1# 2 3if RK_KERNEL_CFG != "" 4 5menu "Boot" 6 7config RK_BOOT_IMG 8 string 9 default "zboot.img" if RK_BOOT_COMPRESSED 10 default "boot.img" 11 12config RK_BOOT_COMPRESSED 13 bool "compressed boot image (zboot)" 14 default y if RK_CHIP_FAMILY = "rv1126_rv1109" || \ 15 RK_CHIP_FAMILY = "px30" || RK_CHIP_FAMILY = "px3se" || \ 16 RK_CHIP_FAMILY = "rk3036" || RK_CHIP_FAMILY = "rk3128h" || \ 17 RK_CHIP_FAMILY = "rk312x" || RK_CHIP_FAMILY = "rk3229" || \ 18 RK_CHIP_FAMILY = "rk3288" || RK_CHIP_FAMILY = "rk3308" || \ 19 RK_CHIP_FAMILY = "rk3326" || RK_CHIP_FAMILY = "rk3358" 20 21config RK_BOOT_FIT_ITS 22 string "its script for FIT boot image" 23 depends on RK_USE_FIT_IMG 24 default "boot.its" if RK_CHIP_FAMILY = "rv1126_rv1109" 25 default "zboot.its" if RK_BOOT_COMPRESSED 26 default "boot.its" 27 28endmenu # Boot 29 30endif 31