2008-03-30 00:09:46 +01:00
|
|
|
choice
|
|
|
|
prompt "Add AT91 specific patches"
|
|
|
|
depends on BR2_KERNEL_ARCH_PATCH_ENABLED
|
|
|
|
depends on BR2_TARGET_ATMEL && BR2_arm
|
2010-04-09 11:26:43 +02:00
|
|
|
default BR2_ARCH_AT91_2_6_30 if BR2_LINUX_2_6_30
|
2008-12-30 09:26:51 +01:00
|
|
|
default BR2_ARCH_AT91_2_6_28 if BR2_LINUX_2_6_28
|
2009-01-29 23:33:23 +01:00
|
|
|
default BR2_ARCH_AT91_2_6_27 if BR2_LINUX_2_6_27
|
2008-03-30 00:09:46 +01:00
|
|
|
help
|
|
|
|
Select a patch to add to the Linux kernel
|
|
|
|
|
2010-04-09 11:26:43 +02:00
|
|
|
config BR2_ARCH_AT91_2_6_30
|
|
|
|
bool "2.6.30"
|
|
|
|
help
|
|
|
|
Apply the at91 linux-2.6.30 patches
|
|
|
|
|
2008-12-30 09:26:51 +01:00
|
|
|
config BR2_ARCH_AT91_2_6_28
|
|
|
|
bool "2.6.28"
|
2008-11-29 22:58:48 +01:00
|
|
|
help
|
2009-01-29 23:33:23 +01:00
|
|
|
Apply the at91 linux-2.6.28 patches
|
2008-11-29 22:58:48 +01:00
|
|
|
|
2009-01-29 23:33:23 +01:00
|
|
|
config BR2_ARCH_AT91_2_6_27
|
|
|
|
bool "2.6.27"
|
2008-11-29 22:58:48 +01:00
|
|
|
help
|
2009-01-29 23:33:23 +01:00
|
|
|
Apply the at91 linux-2.6.27 patches
|
2008-03-30 00:09:46 +01:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_KERNEL_ARCH_PATCH_VERSION
|
|
|
|
string
|
|
|
|
depends on BR2_KERNEL_ARCH_PATCH_ENABLED
|
|
|
|
depends on BR2_TARGET_ATMEL && BR2_arm
|
2010-04-09 11:26:43 +02:00
|
|
|
default "2.6.30" if BR2_ARCH_AT91_2_6_30
|
2008-12-30 09:26:51 +01:00
|
|
|
default "2.6.28" if BR2_ARCH_AT91_2_6_28
|
2009-01-29 23:33:23 +01:00
|
|
|
default "2.6.27" if BR2_ARCH_AT91_2_6_27
|
2008-03-30 00:09:46 +01:00
|
|
|
|
|
|
|
config BR2_KERNEL_ARCH_PATCH_DIR
|
|
|
|
string
|
|
|
|
default "target/device/Atmel/arch-arm/kernel-patches-$(BR2_KERNEL_ARCH_PATCH_VERSION)"
|
2009-01-29 23:33:23 +01:00
|
|
|
|