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.
27 lines
544 B
Bash
27 lines
544 B
Bash
# If you change this file, please also look at files which source this one:
|
|
# h8300helf.sh h8300self.sh
|
|
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-h8300-linux"
|
|
NO_REL_RELOCS=yes
|
|
TEXT_START_ADDR=0x100
|
|
MAXPAGESIZE=2
|
|
TARGET_PAGE_SIZE=128
|
|
ARCH=h8300
|
|
TEMPLATE_NAME=elf
|
|
EMBEDDED=yes
|
|
STACK_ADDR=0xfefc
|
|
TINY_READONLY_SECTION=".tinyrodata :
|
|
{
|
|
*(.tinyrodata)
|
|
} =0"
|
|
TINY_DATA_SECTION=".tinydata ${RELOCATING+0xff8000} :
|
|
{
|
|
*(.tinydata)
|
|
${RELOCATING+ _tinydata = .; }
|
|
}"
|
|
TINY_BSS_SECTION=".tinybss : ${RELOCATING+AT (_tinydata)}
|
|
{
|
|
*(.tinybss)
|
|
}"
|