tfstab; fixes - libdevuansdk - common library for devuan's simple distro kits | |
git clone https://git.parazyd.org/libdevuansdk | |
Log | |
Files | |
Refs | |
Submodules | |
README | |
LICENSE | |
--- | |
commit 4cc939bb48b633bafb7d724b8a4f912273b49aa4 | |
parent fcf4c8459cf310b7ac7f73e06630488f0c67eb05 | |
Author: parazyd | |
Date: Thu, 9 Jun 2016 10:15:57 +0200 fstab; fixes Diffstat: M zlibs/debootstrap | 2 +- M zlibs/imaging | 4 ++-- M zlibs/sysconf | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) --- | |
diff --git a/zlibs/debootstrap b/zlibs/debootstrap | |
t@@ -88,7 +88,7 @@ rm -f /thirdstage.sh rm -f /etc/ssh/*key rm -f /etc/ssh/*.pub rm -f /root/.bash_history - +rm -f /usr/bin/qemu* # our file for which we check the bootstrap is complete echo "1" > .done EOF | |
diff --git a/zlibs/imaging b/zlibs/imaging | |
t@@ -63,8 +63,8 @@ img_partition_dos() { notice "Partitioning with dos" silly - dos_boot_size=(ext2 0 64) - dos_root_size=(ext4 64 -1) + parted_boot=${parted_boot:-ext2 0 64} + parted_root=${parted_root:-ext4 64 -1} pushd ${workdir} | |
diff --git a/zlibs/sysconf b/zlibs/sysconf | |
t@@ -155,7 +155,7 @@ cat < |