tcustomise: whitespace cleanup - libdevuansdk - common library for devuan's simple distro kits
 (HTM) git clone https://git.parazyd.org/libdevuansdk
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 467a85c70c667c460d21664f0d4761a0e4d03d8f
 (DIR) parent db8d68391a18c1122a06878a3a43d119e0339455
 (HTM) Author: Jaromil <jaromil@dyne.org>
       Date:   Mon, 13 Jun 2016 16:43:52 +0200
       
       customise: whitespace cleanup
       
       Diffstat:
         M zlibs/customise                     |      34 ++++++++++++++++----------------
       
       1 file changed, 17 insertions(+), 17 deletions(-)
       ---
 (DIR) diff --git a/zlibs/customise b/zlibs/customise
       t@@ -21,7 +21,7 @@
        # You should have received a copy of the GNU General Public License
        # along with this source code. If not, see <http://www.gnu.org/licenses/>.
        
       -### customise 
       +### customise
        
        kernel_x86_install_default(){
                fn kernel_x86_install_default $@
       t@@ -32,7 +32,7 @@ kernel_x86_install_default(){
        
                local kernel_base=linux-image
                local kernel=""
       -        
       +
                case $arch in
                        amd64)
                                kernel=${kernel_base}-amd64
       t@@ -45,13 +45,13 @@ kernel_x86_install_default(){
                                zerr; zshexit
                                ;;
                esac
       -        
       +
                notice "Installing stock kernel for ::1 arch:: (::2 kernel::)" $arch $kernel
        
                mountdevprocsys ${root}
        
                sudo chroot ${root} apt-get --yes --force-yes --no-install-recommends install $kernel
       -        
       +
                umountdevprocsys ${root}
                notice "default kernel installed"
        }
       t@@ -66,7 +66,7 @@ grub_install_target_dev(){
        
                # TODO: should we use qemu-chroot here for $arch = arm (parazyd?)
                sudo chroot ${root} apt-get install --assume-yes --no-install-recommends grub-common
       -        if [[ ! -d ${root}/boot/grub ]]; then 
       +        if [[ ! -d ${root}/boot/grub ]]; then
                        sudo mkdir ${root}/boot/grub
                fi
        
       t@@ -80,10 +80,10 @@ EOF
                 sudo cp ${devicemap} ${root}/boot/grub/device.map
                sudo chroot ${root} grub-mkconfig -o /boot/grub/grub.cfg
                ## we now tamper with grub.cfg, to remove all references to
       -        ## loopback devices...  
       +        ## loopback devices...
                ## FIXME!!! This is a hack...
                sudo -- sed -r -i -e 's/.*loop.*//g' ${root}/boot/grub/grub.cfg
       -        
       +
                sudo grub-install --root-directory=${root} --no-floppy \
                        --modules="ext2 part_msdos" ${install_dev}
        }
       t@@ -99,12 +99,12 @@ qemu_make_img(){
            root=$strapdir
                freq=($root/.done)
                reqck || return 1
       -        
       +
                local blockskip=2050
        
       -        ## create the qemu image 
       +        ## create the qemu image
                notice "Creating qemu image: $imgfile"
       -        
       +
                qemu-img create -f ${imgformat} ${imgfile} ${imgsize}
                [[ $? = 0 ]] || {
                        error "failed: qemu-img create -f ${imgformat} ${imgfile} ${imgsize}"
       t@@ -130,7 +130,7 @@ qemu_make_img(){
                        sudo losetup -d ${loop1}
                        error "failed: losetup -o $((${blockskip} * 512)) ${loop2} ${loop1}"
                        zsherr; zshexit }
       -        
       +
                ## now we create the fs
                act "creating filesystem"
                sudo mkfs.ext4 ${loop2}
       t@@ -140,8 +140,8 @@ qemu_make_img(){
                        error "failed: mkfs.ext4 $loop2"
                        zsherr; zshexit }
        
       -        ## and we loop-mount it 
       -        
       +        ## and we loop-mount it
       +
                ztmpd
                mntdir=$ztmpdir
                sudo mount -o loop ${loop2} ${mntdir}
       t@@ -150,11 +150,11 @@ qemu_make_img(){
                        sudo losetup -d ${loop1}
                        error "failed: mount -o loop ${loop2} ${mntdir}"
                        zsherr; zshexit }
       -        
       +
                func "mntdir: $mntdir"
                func "strapdir: $strapdir"
        
       -        # now we rsync everything 
       +        # now we rsync everything
                sudo rsync -raX ${strapdir}/ ${mntdir}
                [[ $? = 0 ]] || {
                        umount $mntdir
       t@@ -162,12 +162,12 @@ qemu_make_img(){
                        sudo losetup -d ${loop1}
                        error "failed: rsync -raX ${strapdir}/ ${mntdir}"
                        zsherr; zshexit }
       -        
       +
                # we now install the grub bootloader
                mountdevprocsys ${mntdir}
                grub_install_target_dev ${mntdir} ${loop1}
                umountdevprocsys ${mntdir}
       -        
       +
                sync
                sudo umount ${mntdir}