blob: b7a5d0d7359cf1d4783ce48d0d01b10269f5e8e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
menuconfig BR2_TARGET_ARMLTD
bool "ARM Ltd. Device Support"
depends on BR2_arm
comment "Arm based Device Support"
depends on BR2_arm && BR2_TARGET_ARMLTD
if BR2_TARGET_ARMLTD
choice
prompt "Controller board"
help
ARM Ltd. Controller Board to build for
config BR2_TARGET_ARM_INTEGRATOR_926
bool "Integrator arm926"
depends on BR2_arm && BR2_TARGET_ARMLTD
default y
select BR2_ARM_EABI
select BR2_arm926t
config BR2_TARGET_ARM_INTEGRATOR_926_HUGE
bool "Integrator arm926 (Huge)"
depends on BR2_arm && BR2_TARGET_ARMLTD
default y
select BR2_ARM_EABI
select BR2_arm926t
endchoice
config BR2_BOARD_NAME
string
default "integrator926" if BR2_TARGET_ARM_INTEGRATOR_926
default "integrator926_huge" if BR2_TARGET_ARM_INTEGRATOR_926
config BR2_BOARD_PATH
string "Board Path"
default "target/device/ARMLTD/$(BR2_BOARD_NAME)"
endif
|