sync with buildroot2 from uclibc, add devices, may be used to build other kernel...
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 19 Feb 2005 07:46:01 +0000 (07:46 +0000)
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 19 Feb 2005 07:46:01 +0000 (07:46 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@267 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/Config.in
target/Makefile.in
target/default/openwrt.mk [deleted file]
target/default/skel.tar.gz [new file with mode: 0644]
target/device/Config.in [new file with mode: 0644]
target/device/Makefile.in [new file with mode: 0644]
target/jffs2/jffs2root.mk
target/squashfs-lzma/squashfslzmaroot.mk
target/squashfs/squashfsroot.mk

index 1fad548..d93df6b 100644 (file)
@@ -4,4 +4,5 @@ choice
        source "target/squashfs/Config.in"
        source "target/squashfs-lzma/Config.in"
 endchoice
-       comment "After changing root filesystem, do make clean"
+
+source "target/device/Config.in"
index c01ade2..802b576 100644 (file)
@@ -1 +1,17 @@
-# Nothing
+# Default target skeleton stuff, may be overridden
+TARGET_SKELETON=target/default/skel.tar.gz
+TARGET_SKEL_DIR=target/default/target_skeleton
+
+include target/device/Makefile.in
+
+openwrt-linux.trx: openwrt-trx
+       PATH=$(TARGET_PATH) trx -o openwrt-linux.trx $(LINUX_DIR)/$(LINUX_BINLOC) $(IMAGE).$(ROOTFS)
+
+openwrt-gs-code.bin: openwrt-addpattern openwrt-linux.trx
+       PATH=$(TARGET_PATH) addpattern -2 -i  openwrt-linux.trx -o openwrt-gs-code.bin -g
+
+openwrt-g-code.bin: openwrt-gs-code.bin
+       sed -e "1s,^W54S,W54G," < openwrt-gs-code.bin > openwrt-g-code.bin
+
+openwrt-image: openwrt-g-code.bin
+
diff --git a/target/default/openwrt.mk b/target/default/openwrt.mk
deleted file mode 100644 (file)
index 89051cd..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-openwrt-linux.trx: openwrt-trx
-       PATH=$(TARGET_PATH) trx -o openwrt-linux.trx $(LINUX_DIR)/$(LINUX_BINLOC) $(IMAGE).$(ROOTFS)
-
-openwrt-gs-code.bin: openwrt-addpattern openwrt-linux.trx
-       PATH=$(TARGET_PATH) addpattern -2 -i  openwrt-linux.trx -o openwrt-gs-code.bin -g
-
-openwrt-g-code.bin: openwrt-gs-code.bin
-       sed -e "1s,^W54S,W54G," < openwrt-gs-code.bin > openwrt-g-code.bin
-
-openwrt-image: openwrt-g-code.bin
diff --git a/target/default/skel.tar.gz b/target/default/skel.tar.gz
new file mode 100644 (file)
index 0000000..86cefb1
Binary files /dev/null and b/target/default/skel.tar.gz differ
diff --git a/target/device/Config.in b/target/device/Config.in
new file mode 100644 (file)
index 0000000..36d056c
--- /dev/null
@@ -0,0 +1,17 @@
+choice
+       prompt "Device Support"
+       default BR2_TARGET_ALL
+
+config BR2_TARGET_ALL
+       bool "Support for all devices"
+
+config BR2_TARGET_LINKSYS_WRT54G
+    bool "Linksys WRT54G Support"
+
+config BR2_TARGET_LINKSYS_WRT54GS
+    bool "Linksys WRT54GS Support"
+
+config BR2_TARGET_ASUS_WL500G
+       bool "Asus WL-500g Support"
+
+endchoice
diff --git a/target/device/Makefile.in b/target/device/Makefile.in
new file mode 100644 (file)
index 0000000..92d6e76
--- /dev/null
@@ -0,0 +1,2 @@
+-include target/device/*/*/Makefile.in
+-include target/device/all/Makefile.in
index 90a6016..8dcd00f 100644 (file)
@@ -43,3 +43,8 @@ jffs2root-clean:
 
 jffs2root-dirclean:
        rm -rf $(MTD_DIR)
+
+ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2)),y)
+TARGETS+=jffs2root openwrt-image
+ROOTFS=jffs2
+endif
index 6f41f93..722c205 100644 (file)
@@ -48,3 +48,8 @@ squashfslzmaroot-clean:
 
 squashfslzmaroot-dirclean:
        rm -rf $(SQUASHFSLZMA_DIR)
+
+ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS_LZMA)),y)
+TARGETS+=squashfslzmaroot openwrt-image
+ROOTFS=squashfslzma
+endif
index 4dd6800..d3a104a 100644 (file)
@@ -47,3 +47,8 @@ squashfsroot-clean:
 
 squashfsroot-dirclean:
        rm -rf $(SQUASHFS_DIR)
+
+ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y)
+TARGETS+=squashfsroot openwrt-image
+ROOTFS=squashfs
+endif
This page took 0.027377 seconds and 4 git commands to generate.