diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-26 19:10:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-26 19:10:37 +0200 |
commit | d25468bcb2772ac10efb2ae7035250af20e19c85 (patch) | |
tree | 1f5f88b240cddda5b013bc798137abb3f2f07164 /distro | |
parent | fc95fdaebe5f99ceb6ad0ea5fe0d8ea44ba92aab (diff) | |
download | patches-d25468bcb2772ac10efb2ae7035250af20e19c85.tar patches-d25468bcb2772ac10efb2ae7035250af20e19c85.tar.gz |
distro: Add i686-linux port.
* distro/packages/bootstrap/i686-linux/bash,
distro/packages/bootstrap/i686-linux/mkdir,
distro/packages/bootstrap/i686-linux/tar,
distro/packages/bootstrap/i686-linux/xz: New files.
* distro/packages/base.scm (%bootstrap-coreutils&co,
%bootstrap-binutils, %bootstrap-glibc, %bootstrap-gcc): Add hashes of
the i686-linux tarballs.
* Makefile.am (bootstrap_i686_linuxdir, dist_bootstrap_i686_linux_DATA,
nodist_bootstrap_i686_linux_DATA): New variables
(DISTCLEANFILES): Add $(nodist_bootstrap_i686_linux_DATA).
(distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz):
New rule.
Diffstat (limited to 'distro')
-rw-r--r-- | distro/packages/base.scm | 36 | ||||
-rwxr-xr-x | distro/packages/bootstrap/i686-linux/bash | bin | 0 -> 1331220 bytes | |||
-rwxr-xr-x | distro/packages/bootstrap/i686-linux/mkdir | bin | 0 -> 725756 bytes | |||
-rwxr-xr-x | distro/packages/bootstrap/i686-linux/tar | bin | 0 -> 1140196 bytes | |||
-rwxr-xr-x | distro/packages/bootstrap/i686-linux/xz | bin | 0 -> 865372 bytes |
5 files changed, 28 insertions, 8 deletions
diff --git a/distro/packages/base.scm b/distro/packages/base.scm index ca85ca1f3e..dcb1ca20c8 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -1490,8 +1490,13 @@ check whether everything is alright." %bootstrap-base-url "/" system "/static-binaries.tar.xz")) (sha256 - (base32 - "0azisn8l2b3cvgni9k0ahzsxs5cxrj0hmf38zgpq3k6pggk3zbfm")))) + (match system + ("x86_64-linux" + (base32 + "0azisn8l2b3cvgni9k0ahzsxs5cxrj0hmf38zgpq3k6pggk3zbfm")) + ("i686-linux" + (base32 + "16v60frbh0naccanwxcxz0z3444dd8salbg8p7cp7vwz8245nhfk")))))) "true" ; the program to test "Bootstrap binaries of Coreutils, Awk, etc.")) @@ -1504,8 +1509,13 @@ check whether everything is alright." %bootstrap-base-url "/" system "/binutils-2.22.tar.xz")) (sha256 - (base32 - "1cz1rwqhswgrr14kzbkaj3k32kzgv2b6mmzvc6ssbbz8k2m8jmqa")))) + (match system + ("x86_64-linux" + (base32 + "1cz1rwqhswgrr14kzbkaj3k32kzgv2b6mmzvc6ssbbz8k2m8jmqa")) + ("i686-linux" + (base32 + "1crg5xsf4cxk249sg90h6fjhfkwj1s5dxvhwbym79g79ygbww1br")))))) "ld" ; the program to test "Bootstrap binaries of the GNU Binutils")) @@ -1552,8 +1562,13 @@ check whether everything is alright." (uri (string-append %bootstrap-base-url "/" system "/glibc-2.16.0.tar.xz")) (sha256 - (base32 - "1cz587p3scrrx0zgqnmp4nnfj0vvf01zdqdgkz445dnbfh64nl0v")))))))) + (match system + ("x86_64-linux" + (base32 + "1cz587p3scrrx0zgqnmp4nnfj0vvf01zdqdgkz445dnbfh64nl0v")) + ("i686-linux" + (base32 + "0vzybz1577vflm0p0zg1slqj32carj5102b45k7iskkj46viy14z")))))))))) (description "Bootstrap binaries and headers of the GNU C Library") (long-description #f) (home-page #f))) @@ -1618,8 +1633,13 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \ (uri (string-append %bootstrap-base-url "/" system "/gcc-4.7.2.tar.xz")) (sha256 - (base32 - "07piqzcdaksjbcj037y5gdbh9dfqwzjivg6fkhgg8kif82ibwxxr")))))))) + (match system + ("x86_64-linux" + (base32 + "07piqzcdaksjbcj037y5gdbh9dfqwzjivg6fkhgg8kif82ibwxxr")) + ("i686-linux" + (base32 + "0caiihphp23rrqn382cabykz9ps3ixd5p63dgdnkhz1f01jiarl2")))))))))) (description "Bootstrap binaries of the GNU Compiler Collection") (long-description #f) (home-page #f))) diff --git a/distro/packages/bootstrap/i686-linux/bash b/distro/packages/bootstrap/i686-linux/bash Binary files differnew file mode 100755 index 0000000000..9882d4adc7 --- /dev/null +++ b/distro/packages/bootstrap/i686-linux/bash diff --git a/distro/packages/bootstrap/i686-linux/mkdir b/distro/packages/bootstrap/i686-linux/mkdir Binary files differnew file mode 100755 index 0000000000..0ddab232b7 --- /dev/null +++ b/distro/packages/bootstrap/i686-linux/mkdir diff --git a/distro/packages/bootstrap/i686-linux/tar b/distro/packages/bootstrap/i686-linux/tar Binary files differnew file mode 100755 index 0000000000..6bee702cf5 --- /dev/null +++ b/distro/packages/bootstrap/i686-linux/tar diff --git a/distro/packages/bootstrap/i686-linux/xz b/distro/packages/bootstrap/i686-linux/xz Binary files differnew file mode 100755 index 0000000000..5a126e4fc5 --- /dev/null +++ b/distro/packages/bootstrap/i686-linux/xz |