Skip to content

Commit

Permalink
Add New Lines
Browse files Browse the repository at this point in the history
  • Loading branch information
amanuel2 committed Dec 30, 2016
1 parent e46b22b commit 05ea58d
Show file tree
Hide file tree
Showing 182 changed files with 182 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/sh/built-in/exit/exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ struct cmd_t cmd_exit =
.invalid_use_msg = "Invalid use of exit command.\n"
"Type in exit --help for more help.\n",
.privilege = USER
};
};
1 change: 1 addition & 0 deletions apps/sh/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,4 @@ void init_terminal()




1 change: 1 addition & 0 deletions apps/sh/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,4 @@ str_t term_assignment_return_value(str_t s)




1 change: 1 addition & 0 deletions apps/sh/values.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
char* VAR_USER = "root";
char* VAR_PWD = "/";


1 change: 1 addition & 0 deletions arch/amd64/boot/boot.asm
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ kernel_stack:




1 change: 1 addition & 0 deletions arch/amd64/cpu/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ void init_cpu(void)
}



1 change: 1 addition & 0 deletions arch/amd64/cpu/gdt/gdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ void init_gdt()
: [gp]"m"(gp)
);
}

1 change: 1 addition & 0 deletions arch/amd64/cpu/interrupts/idt.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ void idt_set_gate(uint8_t num, int_handler handler, uint16_t sel,
}



1 change: 1 addition & 0 deletions arch/amd64/init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ void kernelMain(uint32_t multiboot,uint32_t magicnumber)




1 change: 1 addition & 0 deletions arch/i386/boot/boot.asm
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ kernel_stack:




1 change: 1 addition & 0 deletions arch/i386/boot/multiboot/multiboot.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,3 +221,4 @@




1 change: 1 addition & 0 deletions arch/i386/cpu/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ void init_cpu(void)
}



1 change: 1 addition & 0 deletions arch/i386/cpu/gdt/gdt-asm.asm
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ flushcs:
ret



1 change: 1 addition & 0 deletions arch/i386/cpu/gdt/gdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ void init_gdt()




1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/idt.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ void idt_set_gate(uint8_t num, int_handler handler, uint16_t sel,
}



1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/interrupts-asm.asm
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ section .text
%include "irq.asm"



1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/interrupts.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ extern void interupt_handler(int_regs* regs)




1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/irq.asm
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ interupt_m_nocode 46
interupt_m_nocode 47



1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,4 @@ void uninstall_irq_handler(int num)




1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/isr.asm
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ interupt_m_nocode 30
interupt_m_nocode 31



1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/isr.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,4 @@ void init_isr()
}



1 change: 1 addition & 0 deletions arch/i386/cpu/interrupts/pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ void remap_pic_irq()




1 change: 1 addition & 0 deletions arch/i386/init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,4 @@ void kernelMain(multiboot_info_t* multiboot_structure,uint32_t magicnumber)




1 change: 1 addition & 0 deletions arch/i386/sys/sys_poweroff.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ int root_sys_poweroff(void)
return STATUS_OK;
}


1 change: 1 addition & 0 deletions arch/i386/sys/sys_reboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ int root_sys_reboot(void)
return STATUS_OK;
}


1 change: 1 addition & 0 deletions arch/shared/x86/misc/asm_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ void hlt(void)
}



1 change: 1 addition & 0 deletions bin/boneos_logo/boneos_logo.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,4 @@ struct cmd_t cmd_boneos_logo =
};



1 change: 1 addition & 0 deletions bin/boneos_logo/opts/boneos_logo_color.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,4 @@ struct cmd_opt_t cmd_boneos_logo_opt_color =
};



1 change: 1 addition & 0 deletions bin/boneos_logo/opts/main_boneos_logo.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ int main_boneos_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/boneshell/boneshell.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,4 @@ struct cmd_t cmd_boneshell =
};



1 change: 1 addition & 0 deletions bin/clear/clear.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,4 @@ struct cmd_t cmd_clear =




2 changes: 1 addition & 1 deletion bin/clear/opts/color.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ struct cmd_opt_t cmd_clear_opt_color =
4 = Red C = Light Red
5 = Purple D = Light Purple
6 = Yellow E = Light Yellow
7 = White F = Bright White*/
7 = White F = Bright White*/
1 change: 1 addition & 0 deletions bin/clear/opts/main_clear.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ int main_clear_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/cursor/cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ struct cmd_t cmd_cursor =




1 change: 1 addition & 0 deletions bin/cursor/opts/main_cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ int main_cursor_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/echo/echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@ struct cmd_t cmd_echo =




1 change: 1 addition & 0 deletions bin/echo/opts/main_echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@ int main_echo_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/help/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ struct cmd_t cmd_help =




1 change: 1 addition & 0 deletions bin/help/opts/help_cmd_opt.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,4 @@ struct cmd_opt_t cmd_help_opt_cmd =
};



1 change: 1 addition & 0 deletions bin/help/opts/main_help.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ int main_help_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/sleep/opts/main_sleep.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ int main_sleep_opt_handler(char *cmd)




1 change: 1 addition & 0 deletions bin/sleep/sleep.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@ struct cmd_t cmd_sleep =




1 change: 1 addition & 0 deletions include/GlobalDefintions.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@




2 changes: 1 addition & 1 deletion include/apps/sh/built-in/exit/exit.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

extern struct cmd_t cmd_exit;

#endif /*_SH_BUILTIN_EXIT_H_*/
#endif /*_SH_BUILTIN_EXIT_H_*/
1 change: 1 addition & 0 deletions include/apps/sh/shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ volatile uint32_t shell_instance_cnt;




1 change: 1 addition & 0 deletions include/apps/sh/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@




1 change: 1 addition & 0 deletions include/apps/sh/values.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ extern struct values __values;




1 change: 1 addition & 0 deletions include/arch/amd64/cpu/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ extern void init_cpu(void);




1 change: 1 addition & 0 deletions include/arch/amd64/cpu/gdt/gdt.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,4 @@ extern void init_gdt();




1 change: 1 addition & 0 deletions include/arch/amd64/cpu/interrupts/idt.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ extern void init_idt();




1 change: 1 addition & 0 deletions include/arch/amd64/cpu/interrupts/interrupts.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,4 @@ typedef struct




1 change: 1 addition & 0 deletions include/arch/i386/cpu/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ extern void init_cpu(void);




1 change: 1 addition & 0 deletions include/arch/i386/cpu/gdt/gdt.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,4 @@ extern void init_gdt();




1 change: 1 addition & 0 deletions include/arch/i386/cpu/interrupts/idt.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ extern void init_idt();




1 change: 1 addition & 0 deletions include/arch/i386/cpu/interrupts/interrupts.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,4 @@ typedef void(*int_routines)(int_regs *r);




1 change: 1 addition & 0 deletions include/arch/i386/cpu/interrupts/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ extern void int47(void);




1 change: 1 addition & 0 deletions include/arch/i386/cpu/interrupts/isr.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ extern void init_isr();




1 change: 1 addition & 0 deletions include/arch/i386/cpu/interrupts/pic.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,4 @@




1 change: 1 addition & 0 deletions include/arch/shared/x86/misc/asm_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern void hlt(void);




1 change: 1 addition & 0 deletions include/bin/boneos_logo/boneos_logo.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_t cmd_boneos_logo;




1 change: 1 addition & 0 deletions include/bin/boneos_logo/opts/boneos_logo_color.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern struct cmd_opt_t cmd_boneos_logo_opt_color;




1 change: 1 addition & 0 deletions include/bin/boneos_logo/opts/main_boneos_logo.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern int main_boneos_opt_handler(char* cmd);




1 change: 1 addition & 0 deletions include/bin/boneshell/boneshell.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern struct cmd_t cmd_boneshell;




1 change: 1 addition & 0 deletions include/bin/clear/clear.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_t cmd_clear;




1 change: 1 addition & 0 deletions include/bin/clear/opts/color.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_opt_t cmd_clear_opt_color;




1 change: 1 addition & 0 deletions include/bin/clear/opts/main_clear.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern int main_clear_opt_handler(char* cmd);




1 change: 1 addition & 0 deletions include/bin/cursor/cursor.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern struct cmd_t cmd_cursor;




1 change: 1 addition & 0 deletions include/bin/cursor/opts/main_cursor.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ extern int main_cursor_opt_handler(char *cmd);




1 change: 1 addition & 0 deletions include/bin/echo/echo.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_t cmd_echo;




1 change: 1 addition & 0 deletions include/bin/echo/opts/main_echo.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern int main_echo_opt_handler(char* cmd);




1 change: 1 addition & 0 deletions include/bin/help/help.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_t cmd_help;




1 change: 1 addition & 0 deletions include/bin/help/opts/help_cmd_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern struct cmd_opt_t cmd_help_opt_cmd;




1 change: 1 addition & 0 deletions include/bin/help/opts/main_help.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern int main_help_opt_handler(char* cmd);




1 change: 1 addition & 0 deletions include/bin/sleep/opts/main_sleep.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ extern int main_sleep_opt_handler(char *cmd);




1 change: 1 addition & 0 deletions include/bin/sleep/sleep.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ extern struct cmd_t cmd_sleep;




1 change: 1 addition & 0 deletions include/libc/assertk.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,4 @@




1 change: 1 addition & 0 deletions include/libc/ctype/ctype.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@




1 change: 1 addition & 0 deletions include/libc/ctype/isalnum/isalnum.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ extern int isalnum(int c);




Loading

0 comments on commit 05ea58d

Please sign in to comment.