From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qs11R-0004Mz-F4 for garchives@archives.gentoo.org; Fri, 12 Aug 2011 23:20:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0059E21C3F8; Fri, 12 Aug 2011 23:18:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B1A8E21C3F5 for ; Fri, 12 Aug 2011 23:18:00 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F79B1B4063 for ; Fri, 12 Aug 2011 23:18:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 64F578004B for ; Fri, 12 Aug 2011 23:17:59 +0000 (UTC) From: "Liam McLoughlin" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Liam McLoughlin" Message-ID: <39197c305474df0332f150388a404f698d24b685.hexxeh@gentoo> Subject: [gentoo-commits] proj/gentoaster:master commit in: /, res/, configs/ X-VCS-Repository: proj/gentoaster X-VCS-Files: configs/fluxbox.ini configs/minimal.ini configs/xfce.ini create_image.sh daemon.php res/keyboard.lst X-VCS-Directories: / res/ configs/ X-VCS-Committer: hexxeh X-VCS-Committer-Name: Liam McLoughlin X-VCS-Revision: 39197c305474df0332f150388a404f698d24b685 Date: Fri, 12 Aug 2011 23:17:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 1385c3e7bd7681bf624a50957ca24b86 commit: 39197c305474df0332f150388a404f698d24b685 Author: Liam McLoughlin hexxeh net> AuthorDate: Tue Aug 2 16:48:28 2011 +0000 Commit: Liam McLoughlin hexxeh net> CommitDate: Tue Aug 2 17:09:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoaster.gi= t;a=3Dcommit;h=3D39197c30 Keyboard layout support for build tool, Stage3/Portage/BINHOST override f= rom config files --- configs/fluxbox.ini | 1 + configs/minimal.ini | 1 + configs/xfce.ini | 1 + create_image.sh | 38 +++++++---- daemon.php | 2 +- res/keyboard.lst | 184 +++++++++++++++++++++++++--------------------= ----- 6 files changed, 121 insertions(+), 106 deletions(-) diff --git a/configs/fluxbox.ini b/configs/fluxbox.ini index f199237..409ec8b 100644 --- a/configs/fluxbox.ini +++ b/configs/fluxbox.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'7999' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/configs/minimal.ini b/configs/minimal.ini index 0d7eed6..f841cc2 100644 --- a/configs/minimal.ini +++ b/configs/minimal.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'3903' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/configs/xfce.ini b/configs/xfce.ini index 6c249ee..60ce144 100644 --- a/configs/xfce.ini +++ b/configs/xfce.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'16190' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/create_image.sh b/create_image.sh index 2da2d6f..3858dac 100755 --- a/create_image.sh +++ b/create_image.sh @@ -52,11 +52,20 @@ LOG_FILE=3D"${IMAGE_WORK_PATH}/log.txt" TOOL_RES_PATH=3D${RUNNING_DIRECTORY}/res =20 NUM_JOBS=3D$(( `grep -c processor /proc/cpuinfo`+1 )) -STAGE3_URL=3D"http://distribution.hexxeh.net/gentoo/stage3-i686-latest.t= ar.bz2" -PORTAGE_URL=3D"http://distribution.hexxeh.net/gentoo/portage-latest.tar.= bz2" -BINHOST_URL=3D"http://tinderbox.dev.gentoo.org/default-linux/x86" EMERGE_PROXY=3D"${FLAGS_proxy}" =20 +if [ -z ${STAGE3_URL} ]; then + STAGE3_URL=3D"http://distribution.hexxeh.net/gentoo/stage3-i686-latest.= tar.bz2" +fi + +if [ -z ${PORTAGE_URL} ]; then + PORTAGE_URL=3D"http://distribution.hexxeh.net/gentoo/portage-latest.tar= .bz2" +fi + +if [ -z ${BINHOST_URL} ]; then + BINHOST_URL=3D"http://tinderbox.dev.gentoo.org/default-linux/x86" +fi + # Clean up old mounts cleanup_mounts() { sleep 2 @@ -191,19 +200,22 @@ linux32 chroot . /bin/bash /etc/profile &>> ${LOG_F= ILE} echo "Step 13: Setting timezone to ${TIMEZONE}" linux32 chroot . cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime &>> $= {LOG_FILE} =20 -echo "Step 14: Setting hostname to ${HOSTNAME}" +echo "Step 14: Setting keyboard layout to ${KEYBOARD}" +linux32 chroot . sed -i -e "s/keymap=3D.*/keymap=3D\"${KEYBOARD}\"/" /et= c/conf.d/keymaps &>> ${LOG_FILE} + +echo "Step 15: Setting hostname to ${HOSTNAME}" linux32 chroot . /bin/bash -c "echo hostname=3D'${HOSTNAME}' > /etc/conf= .d/hostname" &>> ${LOG_FILE} linux32 chroot . /bin/bash -c "echo 127.0.0.1 ${HOSTNAME}.local ${HOSTNA= ME} localhost > /etc/hosts" &>> ${LOG_FILE} =20 -echo "Step 15: Copying new fstab" +echo "Step 16: Copying new fstab" cp ${TOOL_RES_PATH}/fstab etc/fstab &>> ${LOG_FILE} =20 -echo "Step 16: Setting up networking" +echo "Step 17: Setting up networking" echo 'config_eth0=3D( "dhcp" )' > etc/conf.d/net cp etc/init.d/net.lo etc/init.d/net.eth0 linux32 chroot . rc-update add net.eth0 default &>> ${LOG_FILE} =20 -echo "Step 17: Setting up kernel" +echo "Step 18: Setting up kernel" # If we got the flag, used a cached kernel to reduce build times for tes= ting if [[ ${FLAGS_cachedkernel} -eq ${FLAGS_TRUE} ]]; then echo "Using cached kernel" &>> ${LOG_FILE} @@ -227,16 +239,16 @@ else cp usr/src/linux/arch/i386/boot/bzImage boot/kernel &>> ${LOG_FILE} || = handle_error "Error copying kernel" fi =20 -echo "Step 18: Setting root password" +echo "Step 19: Setting root password" linux32 chroot . /bin/bash -c "echo 'root:${ROOT_PASSWORD}' | chpasswd" = &>> ${LOG_FILE} || handle_error "Error setting root password" =20 -echo "Step 19: Processing packages list" +echo "Step 20: Processing packages list" for PACKAGE in ${PACKAGES_LIST}; do echo "Installing ${PACKAGE}" &>> ${LOG_FILE} linux32 chroot . emerge --jobs=3D${NUM_JOBS} ${PACKAGE} &>> ${LOG_FILE}= || handle_error "Error emerging ${PACKAGE}" done =20 -echo "Step 20: Adding default user" +echo "Step 21: Adding default user" linux32 chroot . useradd -g users -G lp,wheel,audio,cdrom,portage -m ${D= EFAULT_USERNAME} || handle_error "Error adding default user" linux32 chroot . /bin/bash -c "echo '${DEFAULT_USERNAME}:${DEFAULT_PASSW= ORD}' | chpasswd" &>> ${LOG_FILE} || handle_error "Error setting default = user password" =20 @@ -249,13 +261,13 @@ then linux32 chroot . usermod -a vboxguest ${DEFAULT_USERNAME} fi =20 -echo "Step 21: Cleaning up make.conf" +echo "Step 22: Cleaning up make.conf" if [ -n ${EMERGE_PROXY} ]; then sed -i '/http_proxy/ d' etc/make.conf fi sed -i '/MAKEOPTS/ d' etc/make.conf =20 -echo "Step 22: Installing extlinux" +echo "Step 23: Installing extlinux" extlinux --heads 255 --sectors 63 --install boot &>> ${LOG_FILE} || hand= le_error "Error installing extlinux" dd if=3D/usr/lib/extlinux/mbr.bin of=3D../${IMAGE_NAME} conv=3Dnotrunc &= >> ${LOG_FILE} || handle_error "Error copying extlinux MBR" cp ${TOOL_RES_PATH}/extlinux.conf boot/ || handle_error "Error copying e= xtlinux configuration" @@ -291,6 +303,6 @@ if [[ ${FLAGS_compress} -eq ${FLAGS_TRUE} ]]; then IMAGE_OUT=3D"${BUILD_ID}.tar.gz" fi =20 -echo "Step 23: Image build completed!" +echo "Step 24: Image build completed!" echo "Your image is here: ${IMAGES_OUTPUT_PATH}/${IMAGE_OUT}" echo "Your log file is here: ${IMAGES_OUTPUT_PATH}/${BUILD_ID}.log" diff --git a/daemon.php b/daemon.php index 6704053..65d7d2b 100644 --- a/daemon.php +++ b/daemon.php @@ -53,7 +53,7 @@ =20 function image_build($job) { - $progressMagic =3D 23; + $progressMagic =3D 24; =20 $handle =3D $job->handle(); $handlehash =3D md5($handle); diff --git a/res/keyboard.lst b/res/keyboard.lst index 61ed3b2..076ae13 100644 --- a/res/keyboard.lst +++ b/res/keyboard.lst @@ -1,92 +1,92 @@ - us United States - ad Andorra - af Afghanistan - ara Arabic - al Albania - am Armenia - at Austria - az Azerbaijan - by Belarus - be Belgium - bd Bangladesh - in India - ba Bosnia and Herzegovina =20 - br Brazil - bg Bulgaria - ma Morocco - mm Myanmar - ca Canada - cd Congo, Democratic Republic of the - cn China - hr Croatia - cz Czechia - dk Denmark - nl Netherlands - bt Bhutan - ee Estonia - ir Iran - iq Iraq - fo Faroe Islands - fi Finland - fr France - gh Ghana - gn Guinea - ge Georgia - de Germany - gr Greece - hu Hungary - is Iceland - il Israel=20 - it Italy =20 - jp Japan - kg Kyrgyzstan - kh Cambodia - kz Kazakhstan - la Laos - latam Latin American - lt Lithuania - lv Latvia - mao Maori - me Montenegro - mk Macedonia - mt Malta - mn Mongolia - no Norway - pl Poland - pt Portugal - ro Romania =20 - ru Russia - rs Serbia - si Slovenia=20 - sk Slovakia - es Spain - se Sweden - ch Switzerland - sy Syria - tj Tajikistan - lk Sri Lanka - th Thailand - tr Turkey - tw Taiwan - ua Ukraine - gb United Kingdom =20 - uz Uzbekistan - vn Vietnam - kr Korea, Republic of - nec_vndr/jp Japan (PC-98xx Series) - ie Ireland - pk Pakistan - mv Maldives - za South Africa - epo Esperanto - np Nepal - ng Nigeria - et Ethiopia - sn Senegal - brai Braille - tm Turkmenistan - ml Mali - tz Tanzania - ke Kenya - bw Botswana - ph Philippines +us United States +ad Andorra +af Afghanistan +ara Arabic +al Albania +am Armenia +at Austria +az Azerbaijan +by Belarus +be Belgium +bd Bangladesh +in India +ba Bosnia and Herzegovina=20 +br Brazil +bg Bulgaria +ma Morocco +mm Myanmar +ca Canada +cd Congo, Democratic Republic of the +cn China +hr Croatia +cz Czechia +dk Denmark +nl Netherlands +bt Bhutan +ee Estonia +ir Iran +iq Iraq +fo Faroe Islands +fi Finland +fr France +gh Ghana +gn Guinea +ge Georgia +de Germany +gr Greece +hu Hungary +is Iceland +il Israel=20 +it Italy +jp Japan +kg Kyrgyzstan +kh Cambodia +kz Kazakhstan +la Laos +latam Latin American +lt Lithuania +lv Latvia +mao Maori +me Montenegro +mk Macedonia +mt Malta +mn Mongolia +no Norway +pl Poland +pt Portugal +ro Romania +ru Russia +rs Serbia +si Slovenia=20 +sk Slovakia +es Spain +se Sweden +ch Switzerland +sy Syria +tj Tajikistan +lk Sri Lanka +th Thailand +tr Turkey +tw Taiwan +ua Ukraine +gb United Kingdom +uz Uzbekistan +vn Vietnam +kr Korea, Republic of +nec_vndr/jp Japan (PC-98xx Series) +ie Ireland +pk Pakistan +mv Maldives +za South Africa +epo Esperanto +np Nepal +ng Nigeria +et Ethiopia +sn Senegal +brai Braille +tm Turkmenistan +ml Mali +tz Tanzania +ke Kenya +bw Botswana +ph Philippines From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QoIT7-0002MH-O0 for garchives@archives.gentoo.org; Tue, 02 Aug 2011 17:09:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86E7021C037; Tue, 2 Aug 2011 17:09:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 473A221C037 for ; Tue, 2 Aug 2011 17:09:17 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 764831B400D for ; Tue, 2 Aug 2011 17:09:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8F2A33C004 for ; Tue, 2 Aug 2011 17:09:15 +0000 (UTC) From: "Liam McLoughlin" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Liam McLoughlin" Message-ID: <39197c305474df0332f150388a404f698d24b685.hexxeh@gentoo> Subject: [gentoo-commits] proj/gentoaster:webui commit in: /, res/, configs/ X-VCS-Repository: proj/gentoaster X-VCS-Files: configs/fluxbox.ini configs/minimal.ini configs/xfce.ini create_image.sh daemon.php res/keyboard.lst X-VCS-Directories: / res/ configs/ X-VCS-Committer: hexxeh X-VCS-Committer-Name: Liam McLoughlin X-VCS-Revision: 39197c305474df0332f150388a404f698d24b685 Date: Tue, 2 Aug 2011 17:09:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 1abb6395350844c8170348b0e0617b96 Message-ID: <20110802170915.IzRqK2lLgiTK07iuoq4NuEBpIoHqs2YIYpNLho5_8RA@z> commit: 39197c305474df0332f150388a404f698d24b685 Author: Liam McLoughlin hexxeh net> AuthorDate: Tue Aug 2 16:48:28 2011 +0000 Commit: Liam McLoughlin hexxeh net> CommitDate: Tue Aug 2 17:09:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoaster.gi= t;a=3Dcommit;h=3D39197c30 Keyboard layout support for build tool, Stage3/Portage/BINHOST override f= rom config files --- configs/fluxbox.ini | 1 + configs/minimal.ini | 1 + configs/xfce.ini | 1 + create_image.sh | 38 +++++++---- daemon.php | 2 +- res/keyboard.lst | 184 +++++++++++++++++++++++++--------------------= ----- 6 files changed, 121 insertions(+), 106 deletions(-) diff --git a/configs/fluxbox.ini b/configs/fluxbox.ini index f199237..409ec8b 100644 --- a/configs/fluxbox.ini +++ b/configs/fluxbox.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'7999' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/configs/minimal.ini b/configs/minimal.ini index 0d7eed6..f841cc2 100644 --- a/configs/minimal.ini +++ b/configs/minimal.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'3903' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/configs/xfce.ini b/configs/xfce.ini index 6c249ee..60ce144 100644 --- a/configs/xfce.ini +++ b/configs/xfce.ini @@ -5,6 +5,7 @@ BOOT_MEGABYTES=3D'64' SWAP_MEGABYTES=3D'128' ROOT_MEGABYTES=3D'16190' TIMEZONE=3D'Europe/London' +KEYBOARD=3D'gb' HOSTNAME=3D'gentoo' ROOT_PASSWORD=3D'g3nt00' DEFAULT_USERNAME=3D'gentoo' diff --git a/create_image.sh b/create_image.sh index 2da2d6f..3858dac 100755 --- a/create_image.sh +++ b/create_image.sh @@ -52,11 +52,20 @@ LOG_FILE=3D"${IMAGE_WORK_PATH}/log.txt" TOOL_RES_PATH=3D${RUNNING_DIRECTORY}/res =20 NUM_JOBS=3D$(( `grep -c processor /proc/cpuinfo`+1 )) -STAGE3_URL=3D"http://distribution.hexxeh.net/gentoo/stage3-i686-latest.t= ar.bz2" -PORTAGE_URL=3D"http://distribution.hexxeh.net/gentoo/portage-latest.tar.= bz2" -BINHOST_URL=3D"http://tinderbox.dev.gentoo.org/default-linux/x86" EMERGE_PROXY=3D"${FLAGS_proxy}" =20 +if [ -z ${STAGE3_URL} ]; then + STAGE3_URL=3D"http://distribution.hexxeh.net/gentoo/stage3-i686-latest.= tar.bz2" +fi + +if [ -z ${PORTAGE_URL} ]; then + PORTAGE_URL=3D"http://distribution.hexxeh.net/gentoo/portage-latest.tar= .bz2" +fi + +if [ -z ${BINHOST_URL} ]; then + BINHOST_URL=3D"http://tinderbox.dev.gentoo.org/default-linux/x86" +fi + # Clean up old mounts cleanup_mounts() { sleep 2 @@ -191,19 +200,22 @@ linux32 chroot . /bin/bash /etc/profile &>> ${LOG_F= ILE} echo "Step 13: Setting timezone to ${TIMEZONE}" linux32 chroot . cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime &>> $= {LOG_FILE} =20 -echo "Step 14: Setting hostname to ${HOSTNAME}" +echo "Step 14: Setting keyboard layout to ${KEYBOARD}" +linux32 chroot . sed -i -e "s/keymap=3D.*/keymap=3D\"${KEYBOARD}\"/" /et= c/conf.d/keymaps &>> ${LOG_FILE} + +echo "Step 15: Setting hostname to ${HOSTNAME}" linux32 chroot . /bin/bash -c "echo hostname=3D'${HOSTNAME}' > /etc/conf= .d/hostname" &>> ${LOG_FILE} linux32 chroot . /bin/bash -c "echo 127.0.0.1 ${HOSTNAME}.local ${HOSTNA= ME} localhost > /etc/hosts" &>> ${LOG_FILE} =20 -echo "Step 15: Copying new fstab" +echo "Step 16: Copying new fstab" cp ${TOOL_RES_PATH}/fstab etc/fstab &>> ${LOG_FILE} =20 -echo "Step 16: Setting up networking" +echo "Step 17: Setting up networking" echo 'config_eth0=3D( "dhcp" )' > etc/conf.d/net cp etc/init.d/net.lo etc/init.d/net.eth0 linux32 chroot . rc-update add net.eth0 default &>> ${LOG_FILE} =20 -echo "Step 17: Setting up kernel" +echo "Step 18: Setting up kernel" # If we got the flag, used a cached kernel to reduce build times for tes= ting if [[ ${FLAGS_cachedkernel} -eq ${FLAGS_TRUE} ]]; then echo "Using cached kernel" &>> ${LOG_FILE} @@ -227,16 +239,16 @@ else cp usr/src/linux/arch/i386/boot/bzImage boot/kernel &>> ${LOG_FILE} || = handle_error "Error copying kernel" fi =20 -echo "Step 18: Setting root password" +echo "Step 19: Setting root password" linux32 chroot . /bin/bash -c "echo 'root:${ROOT_PASSWORD}' | chpasswd" = &>> ${LOG_FILE} || handle_error "Error setting root password" =20 -echo "Step 19: Processing packages list" +echo "Step 20: Processing packages list" for PACKAGE in ${PACKAGES_LIST}; do echo "Installing ${PACKAGE}" &>> ${LOG_FILE} linux32 chroot . emerge --jobs=3D${NUM_JOBS} ${PACKAGE} &>> ${LOG_FILE}= || handle_error "Error emerging ${PACKAGE}" done =20 -echo "Step 20: Adding default user" +echo "Step 21: Adding default user" linux32 chroot . useradd -g users -G lp,wheel,audio,cdrom,portage -m ${D= EFAULT_USERNAME} || handle_error "Error adding default user" linux32 chroot . /bin/bash -c "echo '${DEFAULT_USERNAME}:${DEFAULT_PASSW= ORD}' | chpasswd" &>> ${LOG_FILE} || handle_error "Error setting default = user password" =20 @@ -249,13 +261,13 @@ then linux32 chroot . usermod -a vboxguest ${DEFAULT_USERNAME} fi =20 -echo "Step 21: Cleaning up make.conf" +echo "Step 22: Cleaning up make.conf" if [ -n ${EMERGE_PROXY} ]; then sed -i '/http_proxy/ d' etc/make.conf fi sed -i '/MAKEOPTS/ d' etc/make.conf =20 -echo "Step 22: Installing extlinux" +echo "Step 23: Installing extlinux" extlinux --heads 255 --sectors 63 --install boot &>> ${LOG_FILE} || hand= le_error "Error installing extlinux" dd if=3D/usr/lib/extlinux/mbr.bin of=3D../${IMAGE_NAME} conv=3Dnotrunc &= >> ${LOG_FILE} || handle_error "Error copying extlinux MBR" cp ${TOOL_RES_PATH}/extlinux.conf boot/ || handle_error "Error copying e= xtlinux configuration" @@ -291,6 +303,6 @@ if [[ ${FLAGS_compress} -eq ${FLAGS_TRUE} ]]; then IMAGE_OUT=3D"${BUILD_ID}.tar.gz" fi =20 -echo "Step 23: Image build completed!" +echo "Step 24: Image build completed!" echo "Your image is here: ${IMAGES_OUTPUT_PATH}/${IMAGE_OUT}" echo "Your log file is here: ${IMAGES_OUTPUT_PATH}/${BUILD_ID}.log" diff --git a/daemon.php b/daemon.php index 6704053..65d7d2b 100644 --- a/daemon.php +++ b/daemon.php @@ -53,7 +53,7 @@ =20 function image_build($job) { - $progressMagic =3D 23; + $progressMagic =3D 24; =20 $handle =3D $job->handle(); $handlehash =3D md5($handle); diff --git a/res/keyboard.lst b/res/keyboard.lst index 61ed3b2..076ae13 100644 --- a/res/keyboard.lst +++ b/res/keyboard.lst @@ -1,92 +1,92 @@ - us United States - ad Andorra - af Afghanistan - ara Arabic - al Albania - am Armenia - at Austria - az Azerbaijan - by Belarus - be Belgium - bd Bangladesh - in India - ba Bosnia and Herzegovina =20 - br Brazil - bg Bulgaria - ma Morocco - mm Myanmar - ca Canada - cd Congo, Democratic Republic of the - cn China - hr Croatia - cz Czechia - dk Denmark - nl Netherlands - bt Bhutan - ee Estonia - ir Iran - iq Iraq - fo Faroe Islands - fi Finland - fr France - gh Ghana - gn Guinea - ge Georgia - de Germany - gr Greece - hu Hungary - is Iceland - il Israel=20 - it Italy =20 - jp Japan - kg Kyrgyzstan - kh Cambodia - kz Kazakhstan - la Laos - latam Latin American - lt Lithuania - lv Latvia - mao Maori - me Montenegro - mk Macedonia - mt Malta - mn Mongolia - no Norway - pl Poland - pt Portugal - ro Romania =20 - ru Russia - rs Serbia - si Slovenia=20 - sk Slovakia - es Spain - se Sweden - ch Switzerland - sy Syria - tj Tajikistan - lk Sri Lanka - th Thailand - tr Turkey - tw Taiwan - ua Ukraine - gb United Kingdom =20 - uz Uzbekistan - vn Vietnam - kr Korea, Republic of - nec_vndr/jp Japan (PC-98xx Series) - ie Ireland - pk Pakistan - mv Maldives - za South Africa - epo Esperanto - np Nepal - ng Nigeria - et Ethiopia - sn Senegal - brai Braille - tm Turkmenistan - ml Mali - tz Tanzania - ke Kenya - bw Botswana - ph Philippines +us United States +ad Andorra +af Afghanistan +ara Arabic +al Albania +am Armenia +at Austria +az Azerbaijan +by Belarus +be Belgium +bd Bangladesh +in India +ba Bosnia and Herzegovina=20 +br Brazil +bg Bulgaria +ma Morocco +mm Myanmar +ca Canada +cd Congo, Democratic Republic of the +cn China +hr Croatia +cz Czechia +dk Denmark +nl Netherlands +bt Bhutan +ee Estonia +ir Iran +iq Iraq +fo Faroe Islands +fi Finland +fr France +gh Ghana +gn Guinea +ge Georgia +de Germany +gr Greece +hu Hungary +is Iceland +il Israel=20 +it Italy +jp Japan +kg Kyrgyzstan +kh Cambodia +kz Kazakhstan +la Laos +latam Latin American +lt Lithuania +lv Latvia +mao Maori +me Montenegro +mk Macedonia +mt Malta +mn Mongolia +no Norway +pl Poland +pt Portugal +ro Romania +ru Russia +rs Serbia +si Slovenia=20 +sk Slovakia +es Spain +se Sweden +ch Switzerland +sy Syria +tj Tajikistan +lk Sri Lanka +th Thailand +tr Turkey +tw Taiwan +ua Ukraine +gb United Kingdom +uz Uzbekistan +vn Vietnam +kr Korea, Republic of +nec_vndr/jp Japan (PC-98xx Series) +ie Ireland +pk Pakistan +mv Maldives +za South Africa +epo Esperanto +np Nepal +ng Nigeria +et Ethiopia +sn Senegal +brai Braille +tm Turkmenistan +ml Mali +tz Tanzania +ke Kenya +bw Botswana +ph Philippines