[imagebuilder]
[openwrt.git] / target / imagebuilder / Makefile
index 8a3ac7f..1e3519f 100644 (file)
@@ -1,10 +1,9 @@
 # 
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2010 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
 #
-# $Id: Makefile 6070 2007-01-10 21:21:59Z nbd $
 
 include $(TOPDIR)/rules.mk
 include $(INCLUDE_DIR)/kernel.mk
@@ -23,24 +22,28 @@ all: compile
 
 $(BIN_DIR)/$(IB_NAME).tar.bz2: clean
        rm -rf $(PKG_BUILD_DIR)
-       mkdir -p $(IB_KDIR) $(PKG_BUILD_DIR)/staging_dir/host $(PKG_BUILD_DIR)/target
+       mkdir -p $(IB_KDIR) $(PKG_BUILD_DIR)/staging_dir/host \
+               $(PKG_BUILD_DIR)/target $(PKG_BUILD_DIR)/scripts
+       -cp $(TOPDIR)/.config $(PKG_BUILD_DIR)/.config
        $(CP) \
-               $(INCLUDE_DIR) $(SCRIPT_DIR) $(PACKAGE_DIR) \
-               $(TOPDIR)/rules.mk $(TOPDIR)/.config \
+               $(INCLUDE_DIR) $(SCRIPT_DIR) \
+               $(TOPDIR)/rules.mk \
                ./files/Makefile \
+               ./files/repositories.conf \
                $(TMP_DIR)/.targetinfo \
                $(TMP_DIR)/.packageinfo \
                $(PKG_BUILD_DIR)/
-       $(CP) $(TOOLCHAIN_DIR)/bin $(PKG_BUILD_DIR)/staging_dir/host/
-       $(CP) $(STAGING_DIR_HOST)/bin/* $(PKG_BUILD_DIR)/staging_dir/host/bin/
+       $(SED) 's/$$A/$(BOARD)/' $(PKG_BUILD_DIR)/repositories.conf
+       $(CP) $(PACKAGE_DIR) $(PKG_BUILD_DIR)/packages
+       $(CP) $(STAGING_DIR_HOST)/bin $(PKG_BUILD_DIR)/staging_dir/host/
        $(CP) $(TOPDIR)/target/linux $(PKG_BUILD_DIR)/target/
        rm -rf \
-               $(PKG_BUILD_DIR)/target/linux/*/patches \
-               $(PKG_BUILD_DIR)/target/linux/*/*/patches
+               $(PKG_BUILD_DIR)/target/linux/*/files{,-*} \
+               $(PKG_BUILD_DIR)/target/linux/*/patches{,-*}
        -cp $(KERNEL_BUILD_DIR)/* $(IB_KDIR)/ # don't copy subdirectories here
-       find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
-       find $(PKG_BUILD_DIR) -name CVS | $(XARGS) rm -rf
-       find $(PKG_BUILD_DIR) -name .git | $(XARGS) rm -rf
+       echo REVISION:="$(REVISION)" > $(PKG_BUILD_DIR)/include/version.mk
+       find $(PKG_BUILD_DIR) -name CVS -o -name .git -o -name .svn \
+         | $(XARGS) rm -rf
        $(TAR) c -C $(BUILD_DIR) $(IB_NAME) | bzip2 -c > $@
 
 download:
This page took 0.02175 seconds and 4 git commands to generate.