From 670f3cbf2d043db751ffd0113635c6fe568e95e5 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 15 Apr 2010 19:20:09 +0200 Subject: [PATCH] xbps-mklive: update to 0.3.0. - Code is in public domain, thanks to yours truly. - Always mount /sys, /dev and /proc before installing packages, GConf requires this to register schemas ?!?. --HG-- extra : convert_revision : c305936c62bf09c05dd8b815c2f09209bcecd283 --- srcpkgs/xbps-mklive/files/xbps-mklive.sh | 31 ++++++++++++++++++++---- srcpkgs/xbps-mklive/template | 2 +- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/srcpkgs/xbps-mklive/files/xbps-mklive.sh b/srcpkgs/xbps-mklive/files/xbps-mklive.sh index ce86702d6e..90f2101218 100644 --- a/srcpkgs/xbps-mklive/files/xbps-mklive.sh +++ b/srcpkgs/xbps-mklive/files/xbps-mklive.sh @@ -1,5 +1,7 @@ #!/bin/sh - +# +# Public Domain, 2009-2010 - Juan RP +# trap "echo; error_out $?" INT QUIT [ "$(id -u)" -ne 0 ] && echo "root perms are required." && exit 1 @@ -37,12 +39,27 @@ info_msg() { printf "\033[1m$@\n\033[m" } - + +mount_pseudofs() +{ + for fs in sys proc dev; do + if [ ! -d $TEMP_ROOTFS/$fs ]; then + mkdir -p $TEMP_ROOTFS/$fs + fi + mount --bind /$fs $TEMP_ROOTFS/$fs || error_out + done +} + +umount_pseudofs() +{ + for fs in sys proc dev; do + umount -f $TEMP_ROOTFS/$fs 2>&1 >/dev/null + done +} + error_out() { - [ -d $TEMP_ROOTFS/sys ] && umount -f $TEMP_ROOTFS/sys 2>&1 >/dev/null - [ -d $TEMP_ROOTFS/proc ] && umount -f $TEMP_ROOTFS/proc 2>&1 >/dev/null - [ -d $TEMP_ROOTFS/dev ] && umount -f $TEMP_ROOTFS/dev 2>&1 >/dev/null + umount_pseudofs [ "$1" -ne 0 ] && echo "ERROR: stage mentioned above returned $1!" info_msg "Cleaning up $BUILD_TMPDIR..." @@ -152,6 +169,8 @@ if [ ! -f "$ISOLINUX_DIR/vesamenu.c32" ]; then cp -f $SYSLINUX_DATADIR/vesamenu.c32 "$ISOLINUX_DIR" fi +mount_pseudofs + xbps_relver=$(xbps-bin.static -V) xbps-uhelper.static cmpver ${xbps_relver} 20091222 if [ $? -eq 255 ]; then @@ -192,6 +211,8 @@ info_msg "Cleaning up rootfs..." rm -f $TEMP_ROOTFS/boot/initrd* rm -f $TEMP_ROOTFS/boot/vmlinuz* +umount_pseudofs + info_msg "Building squashed root filesystem..." mksquashfs "$TEMP_ROOTFS" "$BUILD_TMPDIR/casper/filesystem.squashfs" \ -root-becomes / && \ diff --git a/srcpkgs/xbps-mklive/template b/srcpkgs/xbps-mklive/template index 8d4af43bc7..1f1084645b 100644 --- a/srcpkgs/xbps-mklive/template +++ b/srcpkgs/xbps-mklive/template @@ -1,6 +1,6 @@ # Template file for 'xbps-mklive' pkgname=xbps-mklive -version=0.2.0 +version=0.3.0 build_style=custom-install short_desc="XBPS Live image maker" maintainer="Juan RP "