summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorpavlov <pavlov@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-03 01:22:09 +0000
committerpavlov <pavlov@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-03 01:22:09 +0000
commitca96df4a862896effdfbc29cf9d159943c6e48ac (patch)
tree8627090ebb153485aa0b21d2daf38906d5398b20 /target
parentbfb1bd03544db4b097c6967e4ce177626c6350d6 (diff)
make the rest of the structure for the targets that dont have profiles yet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6475 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/aruba-2.6/Makefile3
-rw-r--r--target/linux/atheros-2.6/Makefile3
-rw-r--r--target/linux/brcm47xx-2.6/Makefile3
-rw-r--r--target/linux/ixp4xx-2.6/Makefile4
-rw-r--r--target/linux/magicbox-2.6/Makefile4
-rw-r--r--target/linux/pxa-2.6/Makefile3
-rw-r--r--target/linux/rb532-2.6/Makefile4
-rw-r--r--target/linux/sibyte-2.6/Makefile4
-rw-r--r--target/linux/uml-2.6/Makefile4
-rw-r--r--target/linux/x86-2.6/Makefile3
10 files changed, 35 insertions, 0 deletions
diff --git a/target/linux/aruba-2.6/Makefile b/target/linux/aruba-2.6/Makefile
index 5d3e19ea2..c53964da8 100644
--- a/target/linux/aruba-2.6/Makefile
+++ b/target/linux/aruba-2.6/Makefile
@@ -18,4 +18,7 @@ endef
include $(INCLUDE_DIR)/kernel-build.mk
DEFAULT_PACKAGES += kmod-madwifi
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/atheros-2.6/Makefile b/target/linux/atheros-2.6/Makefile
index 5404902f3..1700dec8c 100644
--- a/target/linux/atheros-2.6/Makefile
+++ b/target/linux/atheros-2.6/Makefile
@@ -18,4 +18,7 @@ endef
include $(INCLUDE_DIR)/kernel-build.mk
DEFAULT_PACKAGES += kmod-madwifi
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/brcm47xx-2.6/Makefile b/target/linux/brcm47xx-2.6/Makefile
index ca7fd5d2d..ab79d8290 100644
--- a/target/linux/brcm47xx-2.6/Makefile
+++ b/target/linux/brcm47xx-2.6/Makefile
@@ -19,4 +19,7 @@ endef
include $(INCLUDE_DIR)/kernel-build.mk
# DEFAULT_PACKAGES += kmod-switch
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/ixp4xx-2.6/Makefile b/target/linux/ixp4xx-2.6/Makefile
index 352671ee6..5eea6d625 100644
--- a/target/linux/ixp4xx-2.6/Makefile
+++ b/target/linux/ixp4xx-2.6/Makefile
@@ -15,4 +15,8 @@ define Target/Description
endef
include $(INCLUDE_DIR)/kernel-build.mk
+
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/magicbox-2.6/Makefile b/target/linux/magicbox-2.6/Makefile
index b829965a5..20325a8fa 100644
--- a/target/linux/magicbox-2.6/Makefile
+++ b/target/linux/magicbox-2.6/Makefile
@@ -12,4 +12,8 @@ BOARDNAME:=Magicbox
FEATURES:=jffs2
include $(INCLUDE_DIR)/kernel-build.mk
+
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/pxa-2.6/Makefile b/target/linux/pxa-2.6/Makefile
index 94e9601b9..76ca28e37 100644
--- a/target/linux/pxa-2.6/Makefile
+++ b/target/linux/pxa-2.6/Makefile
@@ -17,4 +17,7 @@ endef
include $(INCLUDE_DIR)/kernel-build.mk
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/rb532-2.6/Makefile b/target/linux/rb532-2.6/Makefile
index 6ec9bdcd3..27569a35d 100644
--- a/target/linux/rb532-2.6/Makefile
+++ b/target/linux/rb532-2.6/Makefile
@@ -12,4 +12,8 @@ BOARDNAME:=Mikrotik RouterBoard 532
FEATURES:=jffs2
include $(INCLUDE_DIR)/kernel-build.mk
+
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/sibyte-2.6/Makefile b/target/linux/sibyte-2.6/Makefile
index 364d116d4..28b330275 100644
--- a/target/linux/sibyte-2.6/Makefile
+++ b/target/linux/sibyte-2.6/Makefile
@@ -12,4 +12,8 @@ BOARDNAME:=SiByte MIPS
FEATURES:=broken
include $(INCLUDE_DIR)/kernel-build.mk
+
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))
diff --git a/target/linux/uml-2.6/Makefile b/target/linux/uml-2.6/Makefile
index 25624108a..089ef5858 100644
--- a/target/linux/uml-2.6/Makefile
+++ b/target/linux/uml-2.6/Makefile
@@ -24,6 +24,10 @@ FEATURES:=broken
LINUX_CONFIG:=$(CURDIR)/config/$(ARCH)
include $(INCLUDE_DIR)/kernel-build.mk
+
+# include the profiles
+-include profiles/*.mk
+
endif
$(eval $(call BuildKernel))
diff --git a/target/linux/x86-2.6/Makefile b/target/linux/x86-2.6/Makefile
index 2b8e497c9..005339689 100644
--- a/target/linux/x86-2.6/Makefile
+++ b/target/linux/x86-2.6/Makefile
@@ -14,5 +14,8 @@ FEATURES:=squashfs jffs2 ext2
include $(INCLUDE_DIR)/kernel-build.mk
DEFAULT_PACKAGES += kmod-natsemi
+# include the profiles
+-include profiles/*.mk
+
$(eval $(call BuildKernel))