diff options
author | Marvin Borner | 2021-05-08 13:16:07 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-08 13:16:07 +0200 |
commit | 9d53b87be6a947bff78e202be5641990b58d47a0 (patch) | |
tree | 69840cfd5f2a027dd2aadfaa07f56101050ed10d /boot | |
parent | 8f3e8e7f06cb786b2e2c174cb90eee7947012067 (diff) |
Better serial management
Yay, I wrote my final information technology exam yesterday (abitur).
Only english and mathematics are left now - hype!! (sorry for polluting
my commit messages with useless personal news but this will affect the
future of Melvix as my free time and therefore the time that I'm working
on this project will increase massively once I'm finished with all my
exams)
Diffstat (limited to 'boot')
-rw-r--r-- | boot/grub.cfg | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/boot/grub.cfg b/boot/grub.cfg index f25a976..7f310e9 100644 --- a/boot/grub.cfg +++ b/boot/grub.cfg @@ -1,6 +1,12 @@ set timeout=0 set default=0 -menuentry "Melvix" { - multiboot /boot/melvix okidoki + +menuentry "Melvix with logging" { + multiboot /boot/melvix log + boot +} + +menuentry "Melvix without logging" { + multiboot /boot/melvix boot } |