[Host/Kernelcopy] Add support for direct writing into MBR's DAP [Rawimg] Add kernelcopy support
17 lines
No EOL
163 B
Text
17 lines
No EOL
163 B
Text
ENTRY(main)
|
|
SECTIONS
|
|
{
|
|
. = 0x10000;
|
|
.text : AT(0x10000){
|
|
*.o(.text);
|
|
}
|
|
.data : {
|
|
*.o(.data);
|
|
}
|
|
.rodata : {
|
|
*.o(.rodata);
|
|
}
|
|
.bss : {
|
|
*.o(.bss);
|
|
}
|
|
} |