board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / boot / barebox / Config.in
blob85956d6552d397f7ead8108a1078fcae3339c563
1 config BR2_TARGET_BAREBOX
2         bool "Barebox"
3         help
4           The Barebox bootloader, formerly known as U-Boot v2.
6           http://www.barebox.org
8 if BR2_TARGET_BAREBOX
9 choice
10         prompt "version"
11         help
12           Select the specific Barebox version you want to use
14 config BR2_TARGET_BAREBOX_LATEST_VERSION
15         bool "2017.02.0"
17 config BR2_TARGET_BAREBOX_CUSTOM_VERSION
18         bool "Custom version"
19         help
20           This option allows to use a specific official versions
22 config BR2_TARGET_BAREBOX_CUSTOM_TARBALL
23         bool "Custom tarball"
25 config BR2_TARGET_BAREBOX_CUSTOM_GIT
26         bool "Custom Git repository"
28 endchoice
30 config BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE
31         string "Barebox version"
32         depends on BR2_TARGET_BAREBOX_CUSTOM_VERSION
34 if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
36 config BR2_TARGET_BAREBOX_CUSTOM_TARBALL_LOCATION
37         string "URL of custom Barebox tarball"
39 endif
41 config BR2_TARGET_BAREBOX_VERSION
42         string
43         default "2017.02.0"     if BR2_TARGET_BAREBOX_LATEST_VERSION
44         default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION
45         default "custom"        if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
46         default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
48 config BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR
49         string "custom patch dir"
50         help
51           If your board requires custom patches, add the path to the
52           directory containing the patches here. The patches must be
53           named barebox-<version>-<something>.patch.
55           Most users may leave this empty
57 if BR2_TARGET_BAREBOX_CUSTOM_GIT
59 config BR2_TARGET_BAREBOX_CUSTOM_GIT_REPO_URL
60         string "URL of custom Git repository"
62 config BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION
63         string "Custom Git version"
65 endif
67 source boot/barebox/barebox/Config.in
69 menuconfig BR2_TARGET_BAREBOX_AUX
70         bool "Build barebox with an auxiliary config"
71         help
72           Build barebox with an auxiliary configuration.
74           Useful for building an SPL (Secondary Program Loader) in
75           addition to the traditional TPL (Tertiary Program Loader),
76           such as the X-Loader or MLO for Texas Instruments
77           processors.
79 if BR2_TARGET_BAREBOX_AUX
81 source boot/barebox/barebox-aux/Config.in
83 endif
85 endif