diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-13 03:18:32 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-13 03:18:32 +0000 |
commit | b8603e2ac2b8595f04e60987bcbb19284e82d5e8 (patch) | |
tree | a4432d46a304e027eaa77e508d79347a6d28e55d /src | |
parent | b9f5c112ccd0e39b0652ba8496e2ebd0cb0c5fb8 (diff) |
filesystem support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1399 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/config/Options.lb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index a175f358e8..6ce069540b 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -522,6 +522,32 @@ define CONFIG_ROM_STREAM_START export always comment "ROM stream start location" end +define CONFIG_FS_STREAM + default 0 + export always + comment "Boot from a filesystem" +end +define CONFIG_FS_EXT2 + default 0 + export always + comment "Enable ext2 filesystem support" +end +define CONFIG_FS_ISO9660 + default 0 + export always + comment "Enable ISO9660 filesystem support" +end +define AUTOBOOT_DELAY + default 2 + export always + comment "Delay (in seconds) before autobooting" +end +define AUTOBOOT_CMDLINE + default "hdc1:/vmlinuz root=/dev/hdc3 console=tty0 console=ttyS0,115200" + export always + format "\"%s\"" + comment "Default command line when autobooting" +end ############################################### # IRQ options |