1. 程式人生 > >s5pv210的學習之路(20)x210的kernel編譯

s5pv210的學習之路(20)x210的kernel編譯

make ARCH=arm x210ii_initrd_defconfig make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- -j 4

make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- zImage make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage

在編譯嵌入式Linux核心時出現了以下錯誤提示:

Can’t use ‘defined(@array)’ (Maybe you should just omit the defined()?) at kernel/timeconst.pl line 373.

起初一頭霧水,仔細看了錯誤提示後刪掉了kernel/timeconst.pl 檔案中 373行的 if (!defined(@val)) { 改為if ([email protected]) {

後,編譯成功。