summaryrefslogtreecommitdiff
path: root/target/config/Config.in.kernelversion
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-15 22:06:26 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-15 22:07:15 +0200
commit3ebb585eef3eb378e5307ec6efa34f58943c353c (patch)
treec971c104ca538796b3b7e15fbe7aba7c9bdd4ddb /target/config/Config.in.kernelversion
parent2997a3ae269aa4ee72c71a05e5d79ad67aee44e9 (diff)
beaglebone-black: add special linux-repo, add uEnv.txt
Diffstat (limited to 'target/config/Config.in.kernelversion')
-rw-r--r--target/config/Config.in.kernelversion14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/config/Config.in.kernelversion b/target/config/Config.in.kernelversion
index 5b3b04102..0b7706bcc 100644
--- a/target/config/Config.in.kernelversion
+++ b/target/config/Config.in.kernelversion
@@ -13,18 +13,26 @@ default ADK_TARGET_KERNEL_VERSION_4_7
config ADK_TARGET_KERNEL_VERSION_GIT
bool "linux-git"
+ select ADK_TARGET_KERNEL_GIT
depends on !ADK_TARGET_ARCH_NDS32
config ADK_TARGET_KERNEL_VERSION_FSLC
bool "linux-fslc"
+ select ADK_TARGET_KERNEL_GIT
select ADK_HOST_NEED_LZOP
select ADK_TARGET_KERNEL_IMAGE
depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
config ADK_TARGET_KERNEL_VERSION_RPI
bool "linux-rpi"
+ select ADK_TARGET_KERNEL_GIT
depends on ADK_TARGET_BOARD_BCM28XX
+config ADK_TARGET_KERNEL_VERSION_BB
+ bool "linux-bb"
+ select ADK_TARGET_KERNEL_GIT
+ depends on ADK_TARGET_SYSTEM_BEAGLEBONE_BLACK
+
config ADK_TARGET_KERNEL_VERSION_4_7
bool "4.7.3"
depends on !ADK_TARGET_ARCH_METAG
@@ -185,15 +193,21 @@ config ADK_KERNEL_GITVER
default "git" if ADK_TARGET_KERNEL_VERSION_GIT
default "rpi" if ADK_TARGET_KERNEL_VERSION_RPI
default "fslc" if ADK_TARGET_KERNEL_VERSION_FSLC
+ default "bb" if ADK_TARGET_KERNEL_VERSION_BB
+
+config ADK_TARGET_KERNEL_GIT
+ bool
config ADK_TARGET_KERNEL_REPO
string "git repository"
depends on ADK_TARGET_KERNEL_VERSION_GIT \
|| ADK_TARGET_KERNEL_VERSION_RPI \
+ || ADK_TARGET_KERNEL_VERSION_BB \
|| ADK_TARGET_KERNEL_VERSION_FSLC
default "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git" if ADK_TARGET_KERNEL_VERSION_GIT
default "https://github.com/raspberrypi/linux.git" if ADK_TARGET_KERNEL_VERSION_RPI
default "https://github.com/SolidRun/linux-fslc.git" if ADK_TARGET_KERNEL_VERSION_FSLC
+ default "https://github.com/beagleboard/linux.git" if ADK_TARGET_KERNEL_VERSION_BB
help
GIT repository to use.