diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-12 23:15:56 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-12 23:15:56 +0000 |
commit | 9d42bb1a218d092b8c9447cf16ec2c94f7881c8d (patch) | |
tree | 422842a370190fdfcc59b10055cbbf761974bb76 /target/linux/pxa/image | |
parent | debf59c4e6f85df3132eae86b2e8c8399040c1ce (diff) | |
download | upstream-9d42bb1a218d092b8c9447cf16ec2c94f7881c8d.tar.gz upstream-9d42bb1a218d092b8c9447cf16ec2c94f7881c8d.tar.bz2 upstream-9d42bb1a218d092b8c9447cf16ec2c94f7881c8d.zip |
define a shared IMG_PREFIX variable used as a basename for image files, it contains board & subtarget infos (if appropriate) allowing subtargets to share the same bin directory without overwriting each other's files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20834 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/pxa/image')
-rw-r--r-- | target/linux/pxa/image/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/pxa/image/Makefile b/target/linux/pxa/image/Makefile index 7b7fa3997b..74edb62be0 100644 --- a/target/linux/pxa/image/Makefile +++ b/target/linux/pxa/image/Makefile @@ -12,7 +12,7 @@ define Image/Prepare endef define Image/BuildKernel - cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage + cp $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage endef define Image/Build @@ -20,16 +20,16 @@ define Image/Build endef define Image/Build/jffs2-64k - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=64k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=64k conv=sync endef define Image/Build/jffs2-128k - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=128k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync endef define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=128k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync endef $(eval $(call BuildImage)) |