diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-27 15:34:19 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-27 15:34:19 +0000 |
commit | 46f308dba3bdaf7f60b7a504b4b9b38ff2a6e7ed (patch) | |
tree | 0b777f3b5bb1c81b9a4d8e7b47942a95fd3164af /target/linux/ixp4xx | |
parent | a9532e438699a4d8a3bf3a8da84fd52a7f095b0a (diff) | |
download | upstream-46f308dba3bdaf7f60b7a504b4b9b38ff2a6e7ed.tar.gz upstream-46f308dba3bdaf7f60b7a504b4b9b38ff2a6e7ed.tar.bz2 upstream-46f308dba3bdaf7f60b7a504b4b9b38ff2a6e7ed.zip |
ixp4xx: use common image prefix
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45785 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx')
-rw-r--r-- | target/linux/ixp4xx/image/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/target/linux/ixp4xx/image/Makefile b/target/linux/ixp4xx/image/Makefile index 564cafcf34..7488d757b6 100644 --- a/target/linux/ixp4xx/image/Makefile +++ b/target/linux/ixp4xx/image/Makefile @@ -11,23 +11,23 @@ ifdef CONFIG_PACKAGE_apex define Image/Build/Linksys BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \ -L $(BIN_DIR)/apex/apex-$(2)-armeb.bin \ - -k $(BIN_DIR)/openwrt-$(2)-zImage \ + -k $(BIN_DIR)/$(IMG_PREFIX)-$(2)-zImage \ -r rootfs:$(BIN_DIR)/$(IMG_PREFIX)-$(1).img \ - -p -o $(BIN_DIR)/openwrt-$(2)-$(1).bin + -p -o $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).bin BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \ -F -L $(BIN_DIR)/apex/apex-$(2)-16mb-armeb.bin \ - -k $(BIN_DIR)/openwrt-$(2)-zImage \ + -k $(BIN_DIR)/$(IMG_PREFIX)-$(2)-zImage \ -r rootfs:$(BIN_DIR)/$(IMG_PREFIX)-$(1).img \ - -p -o $(BIN_DIR)/openwrt-$(2)-$(1)-16mb.bin + -p -o $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1)-16mb.bin endef endif define Image/Build/Freecom $(INSTALL_DIR) $(TARGET_DIR)/boot # TODO: Add special CMDLINE shim for webupgrade image here - $(CP) $(BIN_DIR)/openwrt-$(2)-zImage $(TARGET_DIR)/zImage - $(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ . - $(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img + $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-zImage $(TARGET_DIR)/zImage + $(TAR) cfj $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).img --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ . + $(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).img $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1)-webupgrade.img rm -f $(TARGET_DIR)/zImage endef |