This worked:
MEMORY {
kernel_space (rwx) : ORIGIN = 0x80200000, LENGTH = 5K
}
SECTIONS {
.text : {
*(.text*)
} > kernel_space
}
"Why did the previous one not work?" you ask? I don't know, all I know is I'm finally free of linker hell, and I'm happy.