Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| tips:radxa:linux [2016/05/29 10:10] – [custom rabian] scipio | tips:radxa:linux [2016/05/29 16:56] (current) – [custom rabian] scipio | ||
|---|---|---|---|
| Line 17: | Line 17: | ||
| < | < | ||
| apt-get install qemu binfmt-support qemu-user-static | apt-get install qemu binfmt-support qemu-user-static | ||
| + | sudo apt-get install git-core flex bison build-essential gcc-arm-linux-gnueabihf libncurses5-dev zlib1g-dev sharutils lzop | ||
| </ | </ | ||
| + | |||
| + | < | ||
| + | sudo ln -s / | ||
| + | </ | ||
| + | |||
| + | |||
| + | All' | ||
| nel Makefile di rock-bsp/ | nel Makefile di rock-bsp/ | ||
| Line 24: | Line 32: | ||
| </ | </ | ||
| - | recompile | + | copiato radxa_rock_pro_linux_hdmi_defconfig in $KERNEL_SRC/ |
| + | |||
| + | * make kernel-config - configure the linux kernel" | ||
| + | * make uboot - compile uboot" | ||
| + | * make kernel - compile kernel" | ||
| + | * make ramdisk - prepare initrd.img" | ||
| + | * make rootfs - prepare rootfs" | ||
| + | |||
| + | |||
| + | |||
| + | * make boot.img - prepare linux-boot.img" | ||
| + | * make nand.img - generate nand.img" | ||
| + | * make sdcard.img - generate sdcard.img" | ||
| + | |||
| + | write image to nand | ||
| < | < | ||
| - | BOARD_IMG=rock_pro | + | # optionally |
| - | cd rock-bsp | + | # sudo upgrade_tool lf |
| - | make kernel-config | + | |
| - | make | + | |
| - | mv boards/ | + | |
| - | if [ ! -z ${OUT} ]; then | + | sudo upgrade_tool uf /lab/radxa/rabian-build/160527/rock-bsp/boards/ |
| - | IMAGE_NAME=" | + | |
| - | cd ${OUT}/${BOARD_IMG}/${TODAY}/ | + | |
| - | fi | + | |
| </ | </ | ||
| + | |||
| + | ===== custom kernel ===== | ||
| + | |||
| + | < | ||
| + | sudo apt-get install build-essential gcc-arm-linux-gnueabihf lzop libncurses5-dev libssl-dev bc parted build-essential libusb-1.0-0-dev | ||
| + | |||
| + | # checkout linux-next | ||
| + | cd linux-next | ||
| + | export ARCH=arm | ||
| + | export CROSS_COMPILE=arm-linux-gnueabihf- | ||
| + | |||
| + | wget http:// | ||
| + | wget http:// | ||
| + | |||
| + | cp arch/ | ||
| + | |||
| + | # change this in .config | ||
| + | # CONFIG_CMDLINE=" | ||
| + | |||
| + | make menuconfig | ||
| + | |||
| + | make -j6 zImage dtbs | ||
| + | |||
| + | |||
| + | mkdir modules | ||
| + | export INSTALL_MOD_PATH=./ | ||
| + | make modules && make modules_install | ||
| + | |||
| + | cat arch/ | ||
| + | mkbootimg --kernel zImage-dtb --ramdisk /dev/null -o boot.img | ||
| + | |||
| + | wget http:// | ||
| + | |||
| + | sudo rkflashtool P < parameter_linux_nand | ||
| + | sudo rkflashtool w boot < boot.img | ||
| + | sudo rkflashtool b | ||
| + | |||
| + | |||
| + | </ | ||
| + | |||
| + | |||