Files
BBeOS/boot-unpacked/boot.scr
Eliott 7b53cde2ae
Some checks failed
CI / markdown-lint (push) Failing after 14s
Complete BBeOS project implementation with BlackBerry-inspired website
- Updated .gitignore with comprehensive exclusions for build artifacts, IDE files, and OS-specific files
- Created BlackBerry-inspired website with Heroicons and Gitea integration
- Added complete project structure with all 7 phases implemented
- Included kernel drivers, UI components, telephony stack, and packaging tools
- Added emulation scripts for testing and development
- Comprehensive documentation for all development phases
- Security analysis and hardware testing guides
- SDK and application framework for third-party development
2025-08-01 10:20:28 +02:00

15 lines
278 B
Plaintext

# BBeOS Boot Script
# For testing with QEMU or other bootloaders
# Load kernel
fatload mmc 0:1 0x80200000 zImage
# Load device tree
fatload mmc 0:1 0x82000000 dtb
# Load initramfs
fatload mmc 0:1 0x83000000 initramfs.img
# Boot kernel
bootz 0x80200000 0x83000000 0x82000000