summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Masters <jcm@redhat.com>2012-10-10 21:58:55 -0400
committerJon Masters <jcm@redhat.com>2012-10-10 21:58:55 -0400
commit35cfb18736053e5302b1953a8412e137732efbb5 (patch)
treedf1e32f3eafd689df69d65ea587a3a6eddb7a00e
parent48387a3427922660af655fb9bdf4b1d4d44067ac (diff)
downloadbootstrap-aarch64-jcm.tar.gz
bootstrap-aarch64-jcm.tar.xz
bootstrap-aarch64-jcm.zip
aarch64: Update stage1 with latest bits from Alaarch64-jcm
We are now able to build the complete stage1. Update the script :) Signed-off-by: Jon Masters <jcm@redhat.com>
-rwxr-xr-xstage118
1 files changed, 14 insertions, 4 deletions
diff --git a/stage1 b/stage1
index f710c4b..71b98b1 100755
--- a/stage1
+++ b/stage1
@@ -376,8 +376,6 @@ case "$1" in
go coreutils
go util-linux
go tar
-# only run this far, for now
- exit 0
go gzip
go bzip2
go diffutils
@@ -390,6 +388,8 @@ case "$1" in
go grep
go distcc
go ccache
+# only run this far, for now
+ exit 0
go stage2
go stage3
@@ -809,7 +809,7 @@ EOF
ln -s gcc ${ROOTFS}/usr/bin/cc
;;
- make | tar | gzip | diffutils | findutils | gawk | which | grep )
+ make | tar | gzip | diffutils | gawk | which | grep )
srpm $1
mcd $BUILDDIR/$1
$SRC/${1}-*/configure $TCONFIGARGS
@@ -819,6 +819,16 @@ EOF
make $J install DESTDIR=${ROOTFS}
;;
+ findutils )
+ srpm $1
+ mcd $BUILDDIR/$1
+ FINDLIBS="-lselinux -ldl" $SRC/${1}-*/configure $TCONFIGARGS
+ notparallel
+ test -d tools/gnulib/lib && make $J V=1 -C tools/gnulib/lib
+ make $J V=1
+ make $J install DESTDIR=${ROOTFS}
+ ;;
+
sed )
srpm $1
mcd $BUILDDIR/$1
@@ -935,7 +945,7 @@ EOF
distcc )
srpm distcc
mcd $BUILDDIR/distcc
- $SRC/${1}-*/configure $TCONFIGARGS --disable-Werror
+ $SRC/${1}-*/configure $TCONFIGARGS --disable-Werror --without-avahi
notparallel
make $J V=1
make $J install DESTDIR=${ROOTFS}