diff options
-rw-r--r-- | packages/torouter-prep/configs/fstab | 2 | ||||
-rw-r--r-- | packages/torouter-prep/src/torouter_config.sh | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/packages/torouter-prep/configs/fstab b/packages/torouter-prep/configs/fstab new file mode 100644 index 0000000..292e521 --- /dev/null +++ b/packages/torouter-prep/configs/fstab @@ -0,0 +1,2 @@ +# This is the weird boot partition (hopefully ext2/3/4 later) +/dev/sda1 /boot vfat nodev,noexec,nosuid 0 0 diff --git a/packages/torouter-prep/src/torouter_config.sh b/packages/torouter-prep/src/torouter_config.sh index deaa72b..106ffc3 100644 --- a/packages/torouter-prep/src/torouter_config.sh +++ b/packages/torouter-prep/src/torouter_config.sh @@ -88,6 +88,9 @@ zcat $config_dir/armrc.sample.gz > ~$ADMINUSER/.armrc # Reconfigure /etc/inittab here cp $config_dir/inittab /etc/inittab +# Reconfigure fstab +cp $config_dir/fstab /etc/fstab + # Configure the network # eth0 is our "internet" interface with a dhcp client cp $config_dir/interfaces /etc/network/interfaces |