编译 Buildroot 固件 本章介绍 Buildroot 固件的编译流程,推荐在 Ubuntu 18.04 系统环境下进行 开发,若使用其它系统版本,可能需要对编译环境做相应调整。 编译 SDK 编译前配置 不同板型的配置文件存放在"device/rockchip/rk3308/"目录下 回到 SDK 根目录执行"build.sh"选择配置文件: ./build.sh roc-rk3308b-cc-plus-buildroot.mk 配置文件会链接到 "device/rockchip/.BoardConfig.mk",检查该文件可以验证 是否配置成功。 相关配置介绍: # Target arch export RK_ARCH=arm64 # 64位 ARM 架构 # Uboot defconfig export RK_UBOOT_DEFCONFIG=firefly-rk3308-debug-uart4 # u-boot 配置文件 # Kernel defconfig export RK_KERNEL_DEFCONFIG=firefly-rk3308b_linux_defconfig # kernel 配置文件 # Kernel dts export RK_KERNEL_DTS=rk3308b-roc-cc-plus-amic_emmc # dts 文件 # Buildroot config export RK_CFG_BUILDROOT=firefly_rk3308_release # Buildroot 配置 # Recovery config export RK_CFG_RECOVERY=firefly_rk3308_recovery # recovery 配置 # parameter for GPT table export RK_PARAMETER=parameter-64bit-emmc.txt # 分区表 # rootfs image path export RK_ROOTFS_IMG=rockdev/rootfs.${RK_ROOTFS_TYPE} # 根文件系统路径 buildroot的配置文件介绍: roc-rk3308b-cc-plus-buildroot.mk 屏幕模组:不支持 UI界面:无 roc-rk3308b-cc-plus-rgb-4.0inch-qt.mk 屏幕模组: 4.0寸RGB液晶屏模组 UI界面:Qt demo roc-rk3308b-cc-plus-rgb-7.0inch-qt.mk 屏幕模组: 7.0寸RGB液晶屏模组 UI界面:Qt demo 全自动编译 全自动编译会执行所有编译、打包操作,生成完整固件。 ./build.sh 部分编译 编译 u-boot ./build.sh uboot 编译 kernel ./build.sh kernel 编译 recovery ./build.sh recovery 编译 Buildroot 根文件系统 编译 Buildroot 根文件系统,将会在 "buildroot/output" 生成编译输出目录 : ./build.sh buildroot # 注:确保作为普通用户编译 Buildroot 根文件系统,避免不必要的错误。 打包固件 更新各部分镜像链接到 "rockdev/" 目录: ./mkfirmware.sh 打包固件,生成的完整固件会保存到 "rockdev/pack/" 目录。 ./build.sh updateimg 分区说明 parameter 分区表 parameter.txt 文件中包含了固件的分区信息,以 "parameter-buildroot- fit.txt" 为例: 路径:"device/rockchip/rk356x/parameter-buildroot-fit.txt" FIRMWARE_VER:8.1 MACHINE_MODEL:RK3308 MACHINE_ID:007 MANUFACTURER: RK3308 MAGIC: 0x5041524B ATAG: 0x00200800 MACHINE: 3308 CHECK_MASK: 0x80 PWR_HLD: 0,0,A,0,1 TYPE: GPT CMDLINE: mtdparts=rk29xxnand:0x00001000@0x00002000(uboot),0x00001000@0x00003000(trust),0x00000800@0x00004000(misc),0x0000A000@0x00004800(recovery),0x0000A000@0x0000E800(boot),0x00080000@0x00018800(rootfs),0x00020000@0x00098800(oem),-@0x00B8800(userdata:grow) uuid:rootfs=614e0000-0000-4b53-8000-1d28000054a9 CMDLINE 属性是我们关注的地方,以 uboot 为例, 0x00001000@0x00004000(uboot) 中 0x00001000 为uboot 分区的起始位置, 0x00002000 为分区的大小,以此类推。 package-file package-file 文件用于打包固件时确定需要的分区镜像和镜像路径,同时它需 要与 parameter.txt 文件保持一致。 路径:"tools/linux/Linux_Pack_Firmware/rockdev/rk3308-package-file" # NAME Relative path # #HWDEF HWDEF package-file package-file bootloader Image/MiniLoaderAll.bin parameter Image/parameter.txt trust Image/trust.img uboot Image/uboot.img boot Image/boot.img rootfs Image/rootfs.img recovery Image/recovery.img oem Image/oem.img userdata:grow Image/userdata.img misc Image/misc.img backup RESERVED #update-script update-script #recover-script recover-script 更多内容 《Firefly Buildroot 使用手册》