From b806b008065672cf155ff31b757d36b8f67cac17 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 10 Jan 2007 21:52:28 +0000 Subject: Add initial version of the new Image Builder It's still a bit rough in a few places, but it seems to work for Broadcom at least - other targets untested. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6071 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/imagebuilder/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 target/imagebuilder/Makefile (limited to 'target/imagebuilder/Makefile') diff --git a/target/imagebuilder/Makefile b/target/imagebuilder/Makefile new file mode 100644 index 000000000..470d04564 --- /dev/null +++ b/target/imagebuilder/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2006 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 +include $(INCLUDE_DIR)/host.mk + +PKG_OS:=$(shell uname -s) +PKG_CPU:=$(shell uname -m) + +IB_NAME:=OpenWrt-ImageBuilder-$(BOARD)-$(KERNEL)-for-$(PKG_OS)-$(PKG_CPU) +IB_BUILD_DIR:=$(BUILD_DIR)/$(IB_NAME) + +all: compile + +$(BIN_DIR)/$(IB_NAME).tar.bz2: + rm -rf $(IB_BUILD_DIR) + mkdir -p $(IB_BUILD_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) $(IB_BUILD_DIR)/staging_dir_$(ARCH)/bin $(IB_BUILD_DIR)/target/linux + $(CP) \ + $(INCLUDE_DIR) $(SCRIPT_DIR) $(PACKAGE_DIR) \ + $(TOPDIR)/rules.mk $(TOPDIR)/.config \ + $(TMP_DIR)/.target.mk \ + ./files/Makefile \ + $(IB_BUILD_DIR)/ + $(CP) $(STAGING_DIR)/bin/* $(IB_BUILD_DIR)/staging_dir_$(ARCH)/bin + $(CP) $(TOPDIR)/target/linux/* $(IB_BUILD_DIR)/target/linux + rm -rf $(IB_BUILD_DIR)/target/linux/*/patches + -cp $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/* $(IB_BUILD_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) # don't copy subdirectories here + find $(IB_BUILD_DIR) -name .svn | xargs rm -rf + find $(IB_BUILD_DIR) -name CVS | xargs rm -rf + (cd $(BUILD_DIR); \ + tar cfj $@ $(IB_NAME); \ + ) + +download: +prepare: +compile: $(BIN_DIR)/$(IB_NAME).tar.bz2 +install: compile + +clean: + rm -rf $(IB_BUILD_DIR) $(BIN_DIR)/$(IB_NAME).tar.bz2 -- cgit v1.2.3