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 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 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