Hello,
I'm facing an issue with some of the linux kernel code. I'm trying to use the CPU suspend fonction (located in arch/arm/kernel/sleep.s) of the linux next kernel
The code is the following:
/*
* Save CPU state for a suspend…
When assembling your first programs with AS, and linking it to external libraries like this :
armv7a-hardfloat-linux-gnueabi-as -o test.o test.Sarmv7a-hardfloat-linux-gnueabi-ld.gold --hash-style=sysv -o test test.o -lc
armv7a-hardfloat-linux-gnueabi-as -o test.o test.S
armv7a-hardfloat-linux-gnueabi-ld.gold --hash-style=sysv -o test test.o -lc
You might be confronted…