41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
if BR2_PACKAGE_ALIENTEK
|
|
config BR2_PACKAGE_ATK_DEMO
|
|
bool "ATK DMEO Partition"
|
|
|
|
default y
|
|
help
|
|
If we want to run some special applications which we do not
|
|
to store in root filesystem. Then we store these in the OEM
|
|
partition, and mount it on the root directory of "/demo".
|
|
|
|
config BR2_PACKAGE_ATK_DEMO_RESOURCE_DIR
|
|
string "ATK DEMO Partition Directory"
|
|
default ""
|
|
help
|
|
Directory to store the OEM applications and resource.
|
|
|
|
The default is ""
|
|
|
|
config BR2_PACKAGE_ATK_DEMO_INSTALL_TARGET_DIR
|
|
string "ATK DEMO Files Install Target Directory"
|
|
default "$(BASE_DIR)/demo"
|
|
help
|
|
Directory to install the files of OEM target.
|
|
|
|
The default is "$(BASE_DIR)/demo"
|
|
|
|
config BR2_PACKAGE_ATK_DEMO_IMAGE_FILESYSTEM_TYPE
|
|
string "ATK DEMO Image filesystem type"
|
|
default "ext4"
|
|
help
|
|
Make demo.img with filesystem type. Support ext2 ext4 squashfs and ubi.
|
|
|
|
The default is "ext4"
|
|
|
|
config BR2_PACKAGE_ATK_DEMO_IMAGE_PARTITION_SIZE
|
|
int "ATK DMEO Image Partition Size"
|
|
default 200
|
|
help
|
|
Configure demo partition size.
|
|
endif #BR2_PACKAGE_ALIENTEK
|