mirror of
https://github.com/drasko/codezero.git
synced 2026-01-17 05:13:16 +01:00
- Moved rootfs from being embedded to mm0 image to being an independent image. - MM0 boots up to start_init_process with updated boot convention.
10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
/*
|
|
* Linker script that embeds an empty root filesystem.
|
|
* This is to be replaced by a real rootfs image later.
|
|
*/
|
|
SECTIONS
|
|
{
|
|
. = %s;
|
|
.bss : { *(.bss) }
|
|
}
|