boot: switch back to ext2 ramdisks while an issue is investigated

This commit is contained in:
K. Lange 2018-12-11 21:00:48 +09:00
parent 42c4e34772
commit 3e04540bf7
2 changed files with 7 additions and 3 deletions

View File

@ -217,8 +217,12 @@ base/bin/%.sh: apps/%.sh
chmod +x $@
# Ramdisk
fatbase/ramdisk.img: ${RAMDISK_FILES} $(shell find base) Makefile util/createramdisk.py | dirs
python3 util/createramdisk.py
util/devtable: ${RAMDISK_FILES} $(shell find base) util/update-devtable.py
util/update-devtable.py
fatbase/ramdisk.img: ${RAMDISK_FILES} $(shell find base) Makefile util/devtable | dirs
genext2fs -B 4096 -d base -D util/devtable -U -b `util/calc-size.sh` -N 2048 $@
# CD image

View File

@ -34,7 +34,7 @@ EFI_HANDLE ImageHandleIn;
#define LINK_TEXT "https://toaruos.org - https://gitlab.com/toaruos"
/* Boot command line strings */
#define DEFAULT_ROOT_CMDLINE "root=/dev/ram0 root_type=tar "
#define DEFAULT_ROOT_CMDLINE "root=/dev/ram0,nocache root_type=ext2 "
#define DEFAULT_GRAPHICAL_CMDLINE "start=live-session "
#define DEFAULT_SINGLE_CMDLINE "start=terminal\037-F "
#define DEFAULT_TEXT_CMDLINE "start=--vga "