Files
lk/dev/drivers.ld
Travis Geiselbrecht 114a350e55 [linker] align all the special sections on 8 byte boundaries, remove x86-64 hack
A bit overkill for 32bit machines, but aligning all the special data structures
on 8 byte boundaries removes any special case for 64bit machines.
2015-10-26 17:01:34 -07:00

9 lines
144 B
Plaintext

SECTIONS {
.drivers : ALIGN(8) {
__drivers = .;
KEEP (*(.drivers))
__drivers_end = .;
}
}
INSERT AFTER .rodata;