439fe29841
This is necessary for the 'rootfs' initrd feature to work properly
8 lines
175 B
Bash
Executable File
8 lines
175 B
Bash
Executable File
#!/bin/sh -efu
|
|
|
|
# remove rootfs entry
|
|
sed -i '/rootfs/d' /etc/fstab
|
|
|
|
echo "/dev/sda6 / ext4 relatime 1 1" >> /etc/fstab
|
|
echo "/dev/sda1 /boot ext4 defaults 1 2" >> /etc/fstab
|