Compare commits

...

2 Commits

Author SHA1 Message Date
337a40e84c feat(grub): update grub config to boot on julios by default
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
2021-12-04 00:14:54 +01:00
ca38b976ab feat(ld): update linker script to put kernel stack below bss
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
2021-12-04 00:09:42 +01:00
2 changed files with 12 additions and 0 deletions

@ -1,3 +1,5 @@
set timeout=0
set default=0
menuentry "julios" { menuentry "julios" {
multiboot2 /boot/julios multiboot2 /boot/julios
boot boot

@ -9,6 +9,16 @@ SECTIONS {
*(.multiboot_header) *(.multiboot_header)
} }
.stack :
{
*(.stack)
}
.bss :
{
*(.bss)
}
.text : .text :
{ {
*(.text) *(.text)