diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-06 08:19:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-06 08:19:58 +0000 |
commit | d5b8a665b572ed54595457f554fcdbfc631434e5 (patch) | |
tree | 581ef7a0ad06ed8029e6f6ca18c8a2380a02c2c9 /target/device/ARM | |
parent | 226a087e89c106e2bbfc6587de2a74b607e076c4 (diff) |
target/device/ARM: Use menuconfig and add description of options
Diffstat (limited to 'target/device/ARM')
-rw-r--r-- | target/device/ARM/Config.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/target/device/ARM/Config.in b/target/device/ARM/Config.in index 20ada1633..557476377 100644 --- a/target/device/ARM/Config.in +++ b/target/device/ARM/Config.in @@ -1,15 +1,20 @@ -config BR2_TARGET_ARM - bool +menuconfig BR2_TARGET_ARM + bool "Generic ARM Support" depends on BR2_arm depends on !BR2_TARGET_ARMLTD depends on !BR2_TARGET_ATMEL depends on !BR2_TARGET_SHARP default y +if BR2_TARGET_ARM + config BR2_BOARD_NAME - string + string "Board Name" default "arm" config BR2_BOARD_PATH - string + string "Board Path" default "target/device/ARM" + +endif + |