X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/2b9b4c5a2de2c0a12e2d96c0c9b65aa5b0c2ab2f..f606c1f91a6eabddbe597c017bc7ce78ade16850:/openwrt/target/Makefile diff --git a/openwrt/target/Makefile b/openwrt/target/Makefile index c8baab5f7..88476a799 100644 --- a/openwrt/target/Makefile +++ b/openwrt/target/Makefile @@ -5,12 +5,12 @@ TARGET_SKEL_DIR=default/target_skeleton all: install -define IMAGE_template -$(BIN_DIR)/openwrt-wrt54g-$(1).bin: $(BIN_DIR)/openwrt-generic-$(patsubst jffs2,jffs2-4MB,$(1)).trx +define BIN_template +$(BIN_DIR)/openwrt-wrt54g-$(1).bin: $(BIN_DIR)/openwrt-brcm-2.4-$(patsubst jffs2,jffs2-4MB,$(1)).trx PATH=$(TARGET_PATH) addpattern -2 -i $$< -o $$@ -g $(SED) "1s,^W54S,W54G," $$@ -$(BIN_DIR)/openwrt-wrt54gs-$(1).bin: $(BIN_DIR)/openwrt-generic-$(patsubst jffs2,jffs2-8MB,$(1)).trx +$(BIN_DIR)/openwrt-wrt54gs-$(1).bin: $(BIN_DIR)/openwrt-brcm-2.4-$(patsubst jffs2,jffs2-8MB,$(1)).trx PATH=$(TARGET_PATH) addpattern -2 -i $$< -o $$@ -g ifeq ($(BR2_TARGET_WRT54G),y) @@ -21,7 +21,7 @@ IMAGE_TARGETS += $(BIN_DIR)/openwrt-wrt54gs-$(1).bin endif -$(BIN_DIR)/openwrt-motorola-$(1).bin: $(BIN_DIR)/openwrt-generic-$(patsubst jffs2,jffs2-8MB,$(1)).trx +$(BIN_DIR)/openwrt-motorola-$(1).bin: $(BIN_DIR)/openwrt-brcm-2.4-$(patsubst jffs2,jffs2-8MB,$(1)).trx PATH=$(TARGET_PATH) motorola-bin $$< $$@ ifeq ($(BR2_TARGET_MOTOROLA),y) @@ -29,20 +29,6 @@ IMAGE_TARGETS += $(BIN_DIR)/openwrt-motorola-$(1).bin endif endef -# Enable loader and prepare kernel -ifeq ($(strip $(BR2_PACKAGE_LOADER)),y) -export LINUX_LOADER=$(BUILD_DIR)/lzmaldr -export LINUX_IMAGE=$(BUILD_DIR)/piggy.lzma -else -export LINUX_IMAGE=$(BUILD_DIR)/piggy.gz -endif - -$(BUILD_DIR)/piggy.lzma: $(LINUX_KERNEL) - cat $^ | $(BUILD_DIR)/lzma/lzma e -si -so -eos > $@ || (rm -f $@ && false) - -$(BUILD_DIR)/piggy.gz: $(LINUX_KERNEL) - cat $^ | gzip -c9 $^ > $@ || (rm -f $@ && false) - TARGET_DIRS:= TARGET_FS:= IMAGE_TARGETS:= @@ -54,12 +40,14 @@ ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS_LZMA)),y) TARGET_DIRS += squashfs-lzma TARGET_FS += squashfs endif -$(foreach fs,$(TARGET_FS),$(eval $(call IMAGE_template,$(fs)))) +$(foreach fs,$(TARGET_FS),$(eval $(call BIN_template,$(fs)))) INSTALL_TARGET_DIRS:=$(patsubst %,%-install,$(TARGET_DIRS)) $(INSTALL_TARGET_DIRS): image_clean $(TARGET_DIR)/etc/sysconf $(BIN_DIR) -prepare: $(patsubst %,%-prepare,$(TARGET_DIRS)) +prepare: $(patsubst %,%-prepare,$(TARGET_DIRS)) $(TARGET_DIR) + +$(TARGET_DIR): mkdir -p $(TARGET_DIR) if [ -f "$(TARGET_SKELETON)" ] ; then \ zcat $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \ @@ -83,9 +71,11 @@ prepare: $(patsubst %,%-prepare,$(TARGET_DIRS)) $(BIN_DIR): mkdir -p $(BIN_DIR) -compile: $(patsubst %,%-compile,$(TARGET_DIRS)) -install: utils-install lzma-install $(LINUX_IMAGE) $(patsubst %,%-install,$(TARGET_DIRS)) $(IMAGE_TARGETS) -clean: $(patsubst %,%-clean,$(TARGET_DIRS)) image_clean +$(INSTALL_TARGET_DIRS): lzma-loader-compile linux-install +$(IMAGE_TARGETS): $(patsubst %,%-install,$(TARGET_DIRS) linux) +compile: $(patsubst %,%-compile,jffs2 lzma squashfs-lzma lzma-loader utils linux) +install: utils-install lzma-install $(patsubst %,%-install,$(TARGET_DIRS) linux) $(IMAGE_TARGETS) +clean: $(patsubst %,%-clean,$(TARGET_DIRS) linux) image_clean image_clean: rm -f $(BIN_DIR)/openwrt-* @@ -100,6 +90,8 @@ $(TARGET_DIR)/etc/sysconf: $(MAKE) -C $(patsubst %-prepare,%,$@) prepare %-compile: %-prepare $(MAKE) -C $(patsubst %-compile,%,$@) compile +%-rebuild: + $(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild %-install: %-compile $(MAKE) -C $(patsubst %-install,%,$@) install