Files
lk/dev/devices.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
142 B
Plaintext

SECTIONS {
.devices : ALIGN(8) {
__devices = .;
KEEP (*(.devices))
__devices_end = .;
}
}
INSERT AFTER .data;