Made sure root filesystem is 1kB-block-size, which is necessary to make it
bootable with the current boot loader (and to make it a ramdisk, with the current ramdisk copying implementation in the FS)
This commit is contained in:
parent
9745f6d368
commit
7ce48162c1
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ echo "
|
||||||
Copying $fdroot to /dev/$root
|
Copying $fdroot to /dev/$root
|
||||||
"
|
"
|
||||||
|
|
||||||
mkfs /dev/$root || exit
|
mkfs -B 1024 /dev/$root || exit
|
||||||
mount /dev/$root /mnt || exit
|
mount /dev/$root /mnt || exit
|
||||||
if [ $thisroot = /dev/ram ]
|
if [ $thisroot = /dev/ram ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue