From 2e6cd2afdb004036daa170df8a91b39b08534725 Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Tue, 1 Apr 2014 21:57:34 +0200 Subject: [PATCH 1/3] Corrected the name of the installer package. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f5eb1eae..fee4264c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ bootfs/ packages/ -installer.cpio.gz +installer.cpio* raspbian-ua-netinst-*.zip raspbian-ua-netinst-*.img.xz From 88e07f30d184685a6dfc38ddd06a1a88ac20d213 Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Tue, 1 Apr 2014 22:20:39 +0200 Subject: [PATCH 2/3] Added domainname option to the documentation. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9782b688..933794e1 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ The format of the file and the current defaults: mirror=http://mirrordirector.raspbian.org/raspbian/ release=wheezy hostname=pi + domainname= rootpw=raspbian cdebootstrap_cmdline= bootsize=+50M # /boot partition size as given to fdisk From 7a21bfeda79b762d4d7da5db3c8bff1cd1a8a64c Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Fri, 11 Apr 2014 16:58:46 +0200 Subject: [PATCH 3/3] Fixed fstab's passno field, so fsck will check the filesystem from time to time. Fixes issue #39 --- scripts/etc/init.d/rcS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/etc/init.d/rcS b/scripts/etc/init.d/rcS index bc861e8c..f0f7bc39 100755 --- a/scripts/etc/init.d/rcS +++ b/scripts/etc/init.d/rcS @@ -380,8 +380,8 @@ echo -n "Configuring installed system... " echo -n root:$rootpw | chroot /rootfs /usr/sbin/chpasswd || fail # default mounts -echo "$bootpartition /boot vfat defaults 0 0" > /rootfs/etc/fstab || fail -echo "$rootpartition / $rootfstype $rootfs_mount_options 0 0" >> /rootfs/etc/fstab || fail +echo "$bootpartition /boot vfat defaults 0 2" > /rootfs/etc/fstab || fail +echo "$rootpartition / $rootfstype $rootfs_mount_options 0 1" >> /rootfs/etc/fstab || fail # use ram tmpfs by default echo "RAMTMP=yes" >> /rootfs/etc/default/tmpfs