URI: 
       traw image builds; grub+kernel - libdevuansdk - common library for devuan's simple distro kits
  HTML git clone https://git.parazyd.org/libdevuansdk
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 695e767a142ca85ddb18d448ced1b9547ebb7589
   DIR parent 0188ebbeafbb5ad3edc1eaf13aca14e27ee448db
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Wed,  8 Jun 2016 21:45:28 +0200
       
       raw image builds; grub+kernel
       
       Diffstat:
         M config                              |       0 
         M libdevuansdk                        |       1 +
         M zlibs/imaging                       |      44 +++++++++++++++++++++++++------
       
       3 files changed, 37 insertions(+), 8 deletions(-)
       ---
   DIR diff --git a/config b/config
   DIR diff --git a/libdevuansdk b/libdevuansdk
       t@@ -24,6 +24,7 @@
        devuan_sdk_version=0.1
        
        setopt pushdsilent
       +export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
        
        SDK_PREFIX=`pwd`
        SDK_HOME=`pwd`
   DIR diff --git a/zlibs/imaging b/zlibs/imaging
       t@@ -26,17 +26,33 @@
        vars+=(imgname imgpath)
        
        img_mkimage() {
       -        fn img_mkimage
       +        fn img_mkimage $@
                imgpath=${strapdir}.img
       -        req=(imgpath imgsize)
       +        local mbrtype="$1"
       +        req=(imgpath imgsize mbrtype)
                ckreq || return 1
        
                imgname=`basename ${imgpath}`
        
                notice "Creating raw image..."
       +        silly
                dd if=/dev/zero \
                        of="${imgpath}" \
                        bs=1M count=${imgsize}
       +
       +        if [[ $mbrtype == "dos" ]]; then
       +                img_partition_dos
       +        elif [[ $mbrtype == "gpt" ]]; then
       +                img_partition_gpt
       +        else
       +                error "No valid MBR type specified..."
       +                zerr; zshexit
       +        fi
       +
       +        img_mount
       +        img_rsync_strapdir
       +        img_install_bootloader
       +        img_umount
        }
        
        img_partition_dos() {
       t@@ -93,12 +109,21 @@ img_partition_gpt() {
                popd
        }
        
       -img_bootloader_prepare() {
       -        fn img_bootloader_prepare
       +img_rsync_strapdir() {
       +        fn img_rsync_strapdir
       +        req=(workdir strapdir)
       +        ckreq || return 1
       +
       +        notice "Rsyncing strapdir to raw image..."
       +        silly
       +        sudo rsync -HPavz -q ${strapdir}/* ${workdir}/rootp
        }
        
       -img_bootloader_install() {
       -        fn img_bootloader_install
       +img_install_bootloader() {
       +        fn img_install_bootloader
       +
       +        conf_install_kernel ${workdir}/rootp
       +        conf_install_grub ${workdir}/rootp
        }
        
        img_mount() {
       t@@ -109,6 +134,7 @@ img_mount() {
                mkdir -p ${workdir}/rootp
        
                sudo mount ${rootpart} ${workdir}/rootp      && act "mounted root partition"
       +        sudo mkdir -p ${workdir}/rootp/{boot,dev,proc,sys}
                sudo mount ${bootpart} ${workdir}/rootp/boot && act "mounted boot partition"
        
                mountdevproc ${workdir}/rootp
       t@@ -119,6 +145,8 @@ img_umount() {
                req=(bootpart rootpart workdir)
                ckreq || return 1
        
       -        escalate root "umount ${workdir}/rootp/boot" && act "umounted boot partition"
       -        escalate root "umount ${workdir}/rootp"      && act "umounted root partition"
       +        umountdevproc ${workdir}/rootp
       +
       +        sudo umount ${workdir}/rootp/boot && act "umounted boot partition"
       +        sudo umount ${workdir}/rootp      && act "umounted root partition"
        }