mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
brewver
This commit is contained in:
parent
c3bb963d63
commit
35c951b728
10 changed files with 19 additions and 17 deletions
BIN
brewos.iso
BIN
brewos.iso
Binary file not shown.
BIN
build/brewos.elf
BIN
build/brewos.elf
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/cmd.o
BIN
build/cmd.o
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +1,7 @@
|
|||
#include "cli_utils.h"
|
||||
|
||||
void cli_cmd_about(char *args) {
|
||||
void cli_cmd_brewver(char *args) {
|
||||
(void)args;
|
||||
cli_write("BrewOS Desktop v1.01 Alpha\n");
|
||||
cli_write("BrewOS v1.02 Alpha\n");
|
||||
cli_write("BrewOS Kernel V2.0.2 Pre-Alpha\n");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ void cli_cmd_license(char *args);
|
|||
void cli_cmd_txtedit(char *args);
|
||||
void cli_cmd_blind(char *args);
|
||||
void cli_cmd_readtheman(char *args);
|
||||
void cli_cmd_about(char *args);
|
||||
void cli_cmd_brewver(char *args);
|
||||
void cli_cmd_clear(char *args);
|
||||
void cli_cmd_exit(char *args);
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ void cli_cmd_help(char *args) {
|
|||
cli_write(" HELP - Display this help message\n");
|
||||
cli_write(" DATE - Display current date and time\n");
|
||||
cli_write(" CLEAR - Clear the screen\n");
|
||||
cli_write(" ABOUT - System info\n");
|
||||
cli_write(" BREWVER - Gives version info\n");
|
||||
cli_write(" MATH - math <op> <a> <b> (e.g. math + 1 2)\n");
|
||||
cli_write(" MAN - Show user manual (interactive)\n");
|
||||
cli_write(" LICENSE - Show license (interactive)\n");
|
||||
|
|
@ -14,5 +14,6 @@ void cli_cmd_help(char *args) {
|
|||
cli_write(" BEEP - Make a sound\n");
|
||||
cli_write(" COWSAY - cowsay <msg>\n");
|
||||
cli_write(" REBOOT - Reboot system\n");
|
||||
cli_write(" SHUTDOWN- Shutdown system\n");
|
||||
cli_write(" SHUTDOWN - Shutdown system\n");
|
||||
cli_write(" MEMINFO - Gives memory info");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -346,8 +346,8 @@ static const CommandEntry commands[] = {
|
|||
{"date", cli_cmd_date},
|
||||
{"CLEAR", cli_cmd_clear},
|
||||
{"clear", cli_cmd_clear},
|
||||
{"ABOUT", cli_cmd_about},
|
||||
{"about", cli_cmd_about},
|
||||
{"BREWVER", cli_cmd_brewver},
|
||||
{"brewver", cli_cmd_brewver},
|
||||
{"MATH", cli_cmd_math},
|
||||
{"math", cli_cmd_math},
|
||||
{"MAN", cli_cmd_man},
|
||||
|
|
|
|||
Loading…
Reference in a new issue