1# 2 3menu "Firmware" 4 5config RK_PARAMETER 6 string "parameter" 7 default "parameter-ab.txt" if RK_AB_UPDATE 8 default "parameter.txt" 9 help 10 Name of parameter file under <CHIP_DIR>/. 11 12if !RK_RTOS 13 14choice 15 prompt "package-file" 16 17config RK_PACKAGE_FILE_DEFAULT 18 bool "auto" 19 help 20 Auto-generated. 21 22config RK_PACKAGE_FILE_CUSTOM 23 bool "custom" 24 help 25 Use custom package-file under <CHIP_DIR>/. 26 27endchoice # package-file 28 29if RK_PACKAGE_FILE_CUSTOM 30 31config RK_PACKAGE_FILE 32 string "custom package-file" 33 default "package-file" 34 help 35 Name of custom package-file under <CHIP_DIR>/. 36 37endif 38 39config RK_MISC_IMG 40 string "misc image" 41 default "blank-misc.img" if RK_AB_UPDATE 42 default "wipe_all-misc.img" 43 help 44 Name of misc image under <RK_IMAGE_DIR>/. 45 Set "" for no misc. 46 47endif # !RK_RTOS 48 49if RK_KERNEL_CFG != "" 50 51config RK_USE_FIT_IMG 52 bool "use FIT (Flattened Image Tree) image" 53 54endif 55 56endmenu # Firmware 57