diff options
author | dancer <dancer> | 2003-01-10 06:34:18 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-01-10 06:34:18 +0000 |
commit | e5aa2a4ae3842ec7a07867b454682c2b9be59d25 (patch) | |
tree | f571a732c732b5980b06431bdc7fb01e601d928c /pbuilder-user-mode-linux | |
parent | e5ce30f5f77c12ca2d8db6e3d7a86e95daa2989e (diff) | |
download | pbuilder-e5aa2a4ae3842ec7a07867b454682c2b9be59d25.tar pbuilder-e5aa2a4ae3842ec7a07867b454682c2b9be59d25.tar.gz |
+2003-01-10 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-umlresult
+ as directory to mount hostfs for result.
+ (UML_DEBUGMODE): --uml-debugmode option to enable trace of
+ shell.
+
+ * Makefile (install): create pbuilder-umlresult dir.
+
+ * pbuilder-uml.conf.5: document UML_BUILDRESULT
+
+ * pbuilder-uml.conf (UML_BUILDRESULT): add UML_BUILDRESULT=
+
+ * pbuilder-user-mode-linux (EXTRAOPT): add support for exitcode.
+ Thanks mdz for the hint!
+ (UML_EXTRAOPT): try and implement BUILDRESULT
+
Diffstat (limited to 'pbuilder-user-mode-linux')
-rwxr-xr-x | pbuilder-user-mode-linux | 38 |
1 files changed, 33 insertions, 5 deletions
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux index e61cd62..61847f9 100755 --- a/pbuilder-user-mode-linux +++ b/pbuilder-user-mode-linux @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -set -e +set -e function cleanup_function () { rm -f ${INSIDE_PBUILDER} @@ -51,11 +51,13 @@ function operate_uml () { INSIDE_PBUILDER=$(tempfile) trap cleanup_function exit UML_CHROOT_MOUNTPOINT=/var/cache/pbuilder/pbuilder-mnt - + UML_CHROOT_BUILDRESULTMOUNTDIR=/var/cache/pbuilder/pbuilder-umlresult #The following script is ran inside UML as soon as it is started. cat <<EOF > ${INSIDE_PBUILDER} #! /bin/bash +${UML_DEBUGMODE} + mount -t proc /proc /proc mount -t tmpfs /tmp /tmp mount -t ext2 /dev/ubd/1 ${UML_CHROOT_MOUNTPOINT} @@ -87,6 +89,7 @@ iface eth0 inet static IP cat <<SHELL > ${UML_CHROOT_MOUNTPOINT}/tmp/chrootshell #! /bin/bash +${UML_DEBUGMODE} # the shell executed inside chroot inside UML echo Starting network inside the chroot /etc/init.d/networking stop @@ -102,20 +105,39 @@ EXTRAOPT= if [ -n "${UML_DISTRIBUTION}" ]; then EXTRAOPT="--distribution ${UML_DISTRIBUTION}" fi -pbuilder "$1" ${UML_EXTRAOPT} \${EXTRAOPT} --buildresult "" --buildplace ${UML_CHROOT_MOUNTPOINT} --internal-build-uml ${BUILDING_DSC_FILE} +if [ -z "${UML_BUILDRESULT}" ]; then + BUILDRESULT= +else + echo " -> Mount build result dir outside UML [${UML_BUILDRESULT}] as [${UML_CHROOT_BUILDRESULTMOUNTDIR}]" + BUILDRESULT=${UML_CHROOT_BUILDRESULTMOUNTDIR} + mkdir -p ${UML_CHROOT_BUILDRESULTMOUNTDIR} + mount -t hostfs none "${UML_CHROOT_BUILDRESULTMOUNTDIR}" -o "${UML_BUILDRESULT}" +fi +pbuilder "$1" ${UML_EXTRAOPT} \${EXTRAOPT} --buildresult "\${BUILDRESULT}" --buildplace "${UML_CHROOT_MOUNTPOINT}" --internal-build-uml ${BUILDING_DSC_FILE} +echo \$? > /proc/exitcode echo "Umounting ${UML_CHROOT_MOUNTPOINT}" umount ${UML_CHROOT_MOUNTPOINT} +if [ -n "${UML_BUILDRESULT}" ]; then + umount "${UML_CHROOT_BUILDRESULTMOUNTDIR}" +fi EOF chmod a+x ${INSIDE_PBUILDER} echo Invoking: "linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty ubd0=/ ubd1=${PBUILDER_COW}${PBUILDER_UML_IMAGE} devfs=mount init=${INSIDE_PBUILDER}" - linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty ubd0=/ ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} + if linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty ubd0=/ ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} ; then + UML_EXITCODE=$? + echo " -> Successful exit from user-mode linux" + else + UML_EXITCODE=$? + echo " -> Exit code ${UML_EXITCODE}" + fi } PBUILDER_COW="" OPERATION="$1" UML_EXTRAOPT= +UML_DEBUGMODE= shift; while [ -n "$1" ] ; do @@ -160,6 +182,9 @@ while [ -n "$1" ] ; do UML_HOSTNAME="$2"; shift; shift; ;; + --uml-debugmode) + UML_DEBUGMODE="set -x"; + shift;; --distribution) UML_DISTRIBUTION="$2"; shift; shift; @@ -174,6 +199,7 @@ while [ -n "$1" ] ; do shift; shift;; --buildresult) # ignore buildresult + UML_BUILDRESULT=$(readlink -f "$2") shift;shift;; --logfile) exec > $(readlink -f "$2"); @@ -196,7 +222,7 @@ done BUILDING_DSC_FILE=$(readlink -f "$1") EXTRACLEANUP= - +UML_EXITCODE=1 case "${OPERATION}" in build) usecow @@ -219,3 +245,5 @@ case "${OPERATION}" in echo "Error: Unknown option [${OPERATION}] was specified " >&2 ;; esac + +exit ${UML_EXITCODE} |