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.
19 lines
351 B
ArmAsm
19 lines
351 B
ArmAsm
.syntax unified
|
|
.text
|
|
|
|
# Align this to 256-byte boundary for easier address matching.
|
|
.align 8
|
|
|
|
# We do not want to run this file. We define _start here to avoid missing
|
|
# entry point.
|
|
|
|
.global _start
|
|
.type _start, %function
|
|
_start:
|
|
bx r0
|
|
bx r15
|
|
.size _start, .-_start
|
|
|
|
# Align this to 256-byte boundary for easier address matching.
|
|
.align 8
|