diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-09 12:07:55 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-09 12:07:55 +0200 |
commit | 140e47372b669942e86d27a4293d9a767a297816 (patch) | |
tree | ed70f3a6dacc97ecad45e77d08a18dd683d7405f /auto/build | |
parent | b451f4c2357d7da5efd084dd44354f81d4e3b05c (diff) | |
download | kanotix-140e47372b669942e86d27a4293d9a767a297816.zip kanotix-140e47372b669942e86d27a4293d9a767a297816.tar.gz |
update from lh to lb scheme
Diffstat (limited to 'auto/build')
-rwxr-xr-x | auto/build | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -4,7 +4,7 @@ . config/common . config/kanotix bit=32 -[ "$LH_ARCHITECTURE" = "amd64" ] && bit=64 +[ "$LB_ARCHITECTURE" = "amd64" ] && bit=64 # Update kanotix-version (32/64-bit and timestamp) [ ! -f config/chroot_local-includes/etc/kanotix-version ] && echo "Kanotix Hellfire 0000-00:00" > config/chroot_local-includes/etc/kanotix-version @@ -13,12 +13,12 @@ perl -pi -e "s%(Kanotix|Excalibur|Hellfire)(32|64)%\${1}$bit%i; s%(32|64)(bit)%$ prebuild() { # Include nvidia-driver into chroot - if [ "$LH_KANOTIX_NVIDIA" = "true" -a -f config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh ]; then + if [ "$LB_KANOTIX_NVIDIA" = "true" -a -f config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh ]; then mkdir -p config/chroot_local-includes/usr/src VER="$(grep -o ^VER=.* config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh|sed s/VER=//)" - ARCH=; [ "$LH_ARCHITECTURE" = "amd64" ] && ARCH="_64" + ARCH=; [ "$LB_ARCHITECTURE" = "amd64" ] && ARCH="_64" URL="http://download.nvidia.com/XFree86/Linux-x86$ARCH/$VER/NVIDIA-Linux-x86$ARCH-$VER.run" - if [ "$LH_CACHE" = "false" ]; then + if [ "$LB_CACHE" = "false" ]; then wget -N -P config/chroot_local-includes/usr/src "$URL" else mkdir -p cache @@ -29,12 +29,12 @@ prebuild() # make current build configuration available for hooks inside chroot mkdir -p config/chroot_local-includes/root - cat config/* 2>/dev/null | grep ^LH_ > config/chroot_local-includes/root/build.conf + cat config/* 2>/dev/null | grep ^LB_ > config/chroot_local-includes/root/build.conf # Kanotix flavours - if [ "$LH_KANOTIX_FLAVOURS" -a "$LH_KANOTIX_FLAVOURS" != "none" ]; then + if [ "$LB_KANOTIX_FLAVOURS" -a "$LB_KANOTIX_FLAVOURS" != "none" ]; then echo "# DO NOT EDIT THIS FILE! It is auto-generated and will be deleted/ overwritten!" > config/chroot_local-packageslists/kanotix-flavours.list - for FLAVOUR in $LH_KANOTIX_FLAVOURS + for FLAVOUR in $LB_KANOTIX_FLAVOURS do echo "#include <$FLAVOUR>" >> config/chroot_local-packageslists/kanotix-flavours.list done @@ -47,10 +47,10 @@ postbuild() rm -f config/chroot_local-packageslists/kanotix-flavours.list } -if [ "$LH_KANOTIX_TMPFS" = "true" ]; then +if [ "$LB_KANOTIX_TMPFS" = "true" ]; then mkdir -p tmpfs # build using tmpfs - [ -z "$(stat --printf "%d\n" . tmpfs | uniq -u)" ] && mount -t tmpfs -o "$LH_KANOTIX_TMPFS_OPTIONS" tmpfs tmpfs + [ -z "$(stat --printf "%d\n" . tmpfs | uniq -u)" ] && mount -t tmpfs -o "$LB_KANOTIX_TMPFS_OPTIONS" tmpfs tmpfs cd tmpfs # delete everything except cache find . -maxdepth 1 ! -name cache -exec rm -r '{}' \; 2>/dev/null @@ -58,12 +58,12 @@ if [ "$LH_KANOTIX_TMPFS" = "true" ]; then rsync -a .. . --exclude=tmpfs # build prebuild - time lh build noauto ${@} 2>&1 | tee binary.log + time lb build noauto ${@} 2>&1 | tee binary.log postbuild cd .. else prebuild - time lh build noauto ${@} 2>&1 | tee binary.log + time lb build noauto ${@} 2>&1 | tee binary.log postbuild fi |