diff options
author | 2013-09-02 22:07:55 +0200 | |
---|---|---|
committer | 2013-10-27 08:08:47 +0100 | |
commit | f2c2193b0571c2f15a430edf5c179b20914d0a95 (patch) | |
tree | f599bc19a656baa3750f15b4158cebf97a1adeee /Config.in.legacy | |
parent | 63ecded2e383b2bb7569e70f311580095b166e29 (diff) | |
download | buildroot-f2c2193b0571c2f15a430edf5c179b20914d0a95.tar.gz buildroot-f2c2193b0571c2f15a430edf5c179b20914d0a95.tar.bz2 |
u-boot: add support for custom Mercurial repository
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'Config.in.legacy')
-rw-r--r-- | Config.in.legacy | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 82b9579fd9..588cd8bf72 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -109,6 +109,34 @@ config BR2_PACKAGE_MODULE_INIT_TOOLS The 'module-init-tools' package has been removed, since it has been depracated upstream and replaced by 'kmod'. +config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL + string "u-boot: the git repository URL option has been renamed" + help + The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has + been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. + +config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP + bool + default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" + select BR2_LEGACY + +# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from +# boot/uboot/Config.in + +config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION + string "u-boot: the git repository version option has been renamed" + help + The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has + been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. + +config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP + bool + default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" + select BR2_LEGACY + +# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from +# boot/uboot/Config.in + config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL string "linux: the git repository URL option has been renamed" help |