diff options
author | Alexis211 <alexis211@gmail.com> | 2010-01-20 14:43:37 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-01-20 14:43:37 +0100 |
commit | eb0efe075de6c27512499bfc81bacb974e6146dd (patch) | |
tree | 2c6ca487677e5702c247d1ad1e85c4ea670113a5 /Source/Kernel/Core | |
parent | 4689ba9cc6ddfbe4f99ddeab3bd3d250d428fcc8 (diff) | |
download | Melon-eb0efe075de6c27512499bfc81bacb974e6146dd.tar.gz Melon-eb0efe075de6c27512499bfc81bacb974e6146dd.zip |
Nothing intresting...
Diffstat (limited to 'Source/Kernel/Core')
-rw-r--r-- | Source/Kernel/Core/kmain.wtf.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Kernel/Core/kmain.wtf.cpp b/Source/Kernel/Core/kmain.wtf.cpp index bd19e8c..fd69f39 100644 --- a/Source/Kernel/Core/kmain.wtf.cpp +++ b/Source/Kernel/Core/kmain.wtf.cpp @@ -112,10 +112,10 @@ void kmain(multiboot_info_t* mbd, u32int magic) { SB::progress("Parse command line"); Vector<String> opts = kcmdline.split(" "); - String keymap = "builtin", init = "/System/Applications/PaperWork.app"; - String root = "ramfs:0"; + String keymap = "builtin", init = DEFAULT_INIT; + String root = DEFAULT_ROOT; Vector<String> mount; - bool enableVESA = true; + bool enableVESA = DEFAULT_ENABLEVESA; for (u32int i = 0; i < opts.size(); i++) { Vector<String> opt = opts[i].split(":"); if (opt[0] == "vesa" && opt[1] != "enabled") enableVESA = false; |