ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
33 lines
459 B
Plaintext
33 lines
459 B
Plaintext
/*
|
|
The section .bss.MY_BUF won't fit in RAM1 or RAM2
|
|
*/
|
|
|
|
MEMORY
|
|
{
|
|
ROM (rx) : ORIGIN = 0x8000000, LENGTH = 10K
|
|
RAM1 (xrw) : ORIGIN = 0x10000000, LENGTH = 64K
|
|
RAM2 (xrw) : ORIGIN = 0x20000000, LENGTH = 96K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
KEEP(*(.text.foo)) ;
|
|
} >ROM
|
|
|
|
.bss :
|
|
{
|
|
_sbss = .;
|
|
*(.bss) *(.bss*) ;
|
|
_ebss = .;
|
|
} >RAM1
|
|
|
|
.bss_ram2 :
|
|
{
|
|
_sbss_ram2 = .;
|
|
*(.bss) *(.bss*) ;
|
|
_ebss_ram2 = .;
|
|
} >RAM2
|
|
}
|