2 prompt "Barebox configuration"
3 default BR2_TARGET_BAREBOX_AUX_USE_DEFCONFIG
5 config BR2_TARGET_BAREBOX_AUX_USE_DEFCONFIG
6 bool "Using a defconfig"
8 config BR2_TARGET_BAREBOX_AUX_USE_CUSTOM_CONFIG
9 bool "Using a custom config file"
13 config BR2_TARGET_BAREBOX_AUX_BOARD_DEFCONFIG
14 string "board defconfig"
15 depends on BR2_TARGET_BAREBOX_AUX_USE_DEFCONFIG
17 Name of the board for which Barebox should be built, without
18 the _defconfig suffix.
20 config BR2_TARGET_BAREBOX_AUX_CUSTOM_CONFIG_FILE
21 string "Configuration file path"
22 depends on BR2_TARGET_BAREBOX_AUX_USE_CUSTOM_CONFIG
24 Path to the barebox configuration file
26 config BR2_TARGET_BAREBOX_AUX_CONFIG_FRAGMENT_FILES
27 string "Additional configuration fragment files"
29 A space-separated list of configuration fragment files,
30 that will be merged to the main Barebox configuration file.
32 config BR2_TARGET_BAREBOX_AUX_IMAGE_FILE
33 string "Image filename"
35 Name of the generated barebox image, which will be copied to
38 If left empty, defaults to:
39 - barebox.bin for barebox versions older than 2012.10.
40 - barebox-flash-image for later versions.
42 config BR2_TARGET_BAREBOX_AUX_CUSTOM_ENV
43 bool "Generate an environment image"
45 Generate a custom environment image. This environment will
46 contain the variables and scripts to be used at boot by
49 config BR2_TARGET_BAREBOX_AUX_CUSTOM_ENV_PATH
50 string "Environment path"
51 depends on BR2_TARGET_BAREBOX_AUX_CUSTOM_ENV
53 Path to the directory containing the custom barebox
54 environment. Depending on your setup, it will probably be
55 based on either the content of the defaultenv or
56 defaultenv-2 directories in the barebox source code, plus
57 the additions needed. The output will be an image in the
58 barebox devfs format, stored in the images directory, with
59 the same name as the directory name given here.
61 config BR2_TARGET_BAREBOX_AUX_CUSTOM_EMBEDDED_ENV_PATH
62 string "Embedded environment path"
64 If this option is not empty, it is the path to a custom
65 embedded barebox environment. This image will be used when
66 the environment found in the environment sector is
67 invalid. This option sets the barebox Kconfig option
68 CONFIG_DEFAULT_ENVIRONMENT_PATH to the specified path. This
69 way it is possible to use Buildroot variables like
70 TOPDIR etc. to refer to the custom environment.
72 Depending on your setup, the custom embedded environment
73 will probably be based on either the content of the
74 defaultenv or defaultenv-2 directories in the barebox source