Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 731 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 731 Bytes

The kernel build sequences for bbb are followed as listed in the below link: https://www.itdev.co.uk/blog/building-linux-kernel-cross-compiling-beaglebone-black

sudo apt-get install gcc-arm-linux-gnueabi

git clone git://github.com/beagleboard/linux.git

cd linux/

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- bb.org_defconfig

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- menuconfig

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- LOADADDR=0x80000000 uImage dtbs

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- modules

Issues:

  1. /bin/sh: lzop: command not found Solution: sudo apt-get install lzop
  2. Problem: "mkimage" command not found - U-Boot images will not be built Solution: sudo apt-get install uboot-mkimage