Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| pandaboard [2012/11/19 00:00] – admin | pandaboard [2013/01/21 16:20] (current) – [Pandaboard ES kernel compilation] admin | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | See the [[http:// | ||
| [[http:// | [[http:// | ||
| [[http:// | [[http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | ====== Pandaboard ES kernel compilation ====== | ||
| + | |||
| + | We are using the cross-compiling toolchain from Linaro, arm-linux-gnueabihf, | ||
| + | |||
| + | mkimage -A arm -T script -C none -n " | ||
| + | |||
| + | # wget kernel sources | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm omap2plus_defconfig | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm menuconfig | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm -j4 all | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm uImage | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm modules | ||
| + | make CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm modules_install INSTALL_MOD_PATH=../ | ||
| + | # | ||
| + | # cp modules to exported rootfs | ||
| + | | ||