/* linker script for creating the example userspace program PL0_test */ /* no ENTRY() statement - this executable is run by jumping to it */ SECTIONS { /* my thought up address userspace programs should run from */ . = 0xaaa00000; __start = .; .another_weird_section_name_that_doesnt_matter : { /* have entry point at the beginning */ KEEP(PL0_test.o) *(*) } __end = .; } '>cgit logo index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/discovery.scm
/th>
AgeCommit message (Expand)Author
2021-09-18import: Add 'generic-git' updater....Xinglu Chen