Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-18 | Kernel: Remove CommandLine::get() in favor of lookup() | Andreas Kling | |
lookup() returns an Optional<String> which allows us to implement easy default values using lookup(key).value_or(default_value); | |||
2020-04-08 | Kernel: Simplify VMWareBackdoor somewhat | Andreas Kling | |
- If there is no VMWare backdoor, don't allocate memory for it. - Remove the "unsupported" state, instead just don't instantiate. - Move the command-line parsing from init to the driver. - Move mouse packet reception from PS2MouseDevice to VMWareBackdoor. | |||
2020-04-08 | Kernel: Rename KParams => Kernel::CommandLine | Andreas Kling | |
Let's make this read more like English. |