1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/openpkg/buildquick.sh Fri Aug 27 15:01:41 2010 +0200 1.3 @@ -0,0 +1,17 @@ 1.4 +#! /bin/sh 1.5 + 1.6 +# 1.7 +# Build a new bootstrap package, 1.8 +# producing openpkg-<date>-<date>.src.sh 1.9 +# 1.10 +TOPDIR=opkg 1.11 +TOPUSE=opkg 1.12 +BASEID=200 1.13 +time ./openpkg.boot --prefix=/$TOPDIR --tag=$TOPDIR --user=$TOPUSE --group=$TOPUSE \ 1.14 + --muid=${BASEID}1 --ruid=${BASEID}2 --nuid=${BASEID}3 \ 1.15 + --mgid=${BASEID}1 --rgid=${BASEID}2 --ngid=${BASEID}3 1.16 + --use_tar=/$TOPDIR/bin/tar --use_make=/$TOPDIR/bin/make \ 1.17 + --use_cc=/$TOPDIR/bin/cc --use_ar=/$TOPDIR/bin/ar \ 1.18 + --use_ld=/$TOPDIR/bin/ld --use_as=/$TOPDIR/bin/as \ 1.19 + --use_strip=/$TOPDIR/bin/strip \ 1.20 + 2>&1 | tee buildlog.txt