diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2013-09-02 22:07:54 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-27 01:51:09 +0200 |
commit | 63ecded2e383b2bb7569e70f311580095b166e29 (patch) | |
tree | f5e4c4d61e3230bdae5d39a2001ea6ad4915b936 /Config.in.legacy | |
parent | fbc2494a41bbdcc12b7242d06852892d2824db4d (diff) | |
download | buildroot-63ecded2e383b2bb7569e70f311580095b166e29.tar.gz buildroot-63ecded2e383b2bb7569e70f311580095b166e29.zip |
linux: 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 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 6cdd4e37af..82b9579fd9 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -109,6 +109,36 @@ 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_LINUX_KERNEL_CUSTOM_GIT_REPO_URL + string "linux: the git repository URL option has been renamed" + help + The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has + been renamed to + BR2_LINUX_KERNEL_CUSTOM_REPO_URL. + +config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP + bool + default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" + select BR2_LEGACY + +# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from +# linux/Config.in + +config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION + string "linux: the git repository version option has been renamed" + help + The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has + been renamed to + BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. + +config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP + bool + default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" + select BR2_LEGACY + +# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from +# linux/Config.in + ############################################################################### comment "Legacy options removed in 2013.08" |