[uClibc-cvs] svn commit: trunk/buildroot/target/device: AMD Soekris
lethal at uclibc.org
lethal at uclibc.org
Mon May 2 20:39:12 UTC 2005
Author: lethal
Date: 2005-05-02 14:39:12 -0600 (Mon, 02 May 2005)
New Revision: 10232
Log:
Get the board-specific dependencies right.
Currently each board is dumping all of its config options regardless of
whether we are even on the right architecture or not (this is due to
outright sourcing of the configs at the upper level..). Dependency
resolution either needs to be done there, or at the board-specific level.
Modified:
trunk/buildroot/target/device/AMD/Config.in
trunk/buildroot/target/device/Soekris/Config.in
Changeset:
Modified: trunk/buildroot/target/device/AMD/Config.in
===================================================================
--- trunk/buildroot/target/device/AMD/Config.in 2005-05-02 13:58:00 UTC (rev 10231)
+++ trunk/buildroot/target/device/AMD/Config.in 2005-05-02 20:39:12 UTC (rev 10232)
@@ -1,4 +1,5 @@
comment "AMD Specific Device Support"
+ depends BR2_mipsel || BR2_mips
config BR2_TARGET_AMD_ALCHEMY
bool "Board support for the AMD development boards"
@@ -15,10 +16,13 @@
help
The AMD Alchemy DBAu1500 Development Board
+comment "Package support"
+ depends BR2_TARGET_AMD_ALCHEMY
+
config BR2_PACKAGE_LINUX
bool "linux"
default n
+ depends BR2_TARGET_AMD_ALCHEMY
help
The Linux kernel.
http://www.kernel.org/
-
Modified: trunk/buildroot/target/device/Soekris/Config.in
===================================================================
--- trunk/buildroot/target/device/Soekris/Config.in 2005-05-02 13:58:00 UTC (rev 10231)
+++ trunk/buildroot/target/device/Soekris/Config.in 2005-05-02 20:39:12 UTC (rev 10232)
@@ -6,8 +6,12 @@
help
The Soekris net4521
+comment "Package support"
+ depends on BR2_TARGET_SOEKRIS_NET4521
+
config BR2_PACKAGE_LINUX
bool "linux"
+ depends on BR2_TARGET_SOEKRIS_NET4521
default n
help
The Linux kernel.
More information about the uClibc-cvs
mailing list