imx6: use more descriptive function name
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38521
This commit is contained in:
parent
de7c615cfe
commit
37c040f41a
1 changed files with 6 additions and 6 deletions
|
@ -7,7 +7,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/image.mk
|
include $(INCLUDE_DIR)/image.mk
|
||||||
|
|
||||||
define get_human_name
|
define sanitize_profile_name
|
||||||
$(shell echo $(PROFILE) | tr '[:upper:]' '[:lower:]' | sed 's/_/-/g')
|
$(shell echo $(PROFILE) | tr '[:upper:]' '[:lower:]' | sed 's/_/-/g')
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -70,27 +70,27 @@ define Image/Build/squashfs
|
||||||
$(call prepare_generic_squashfs,$(KDIR)/root.$(1))
|
$(call prepare_generic_squashfs,$(KDIR)/root.$(1))
|
||||||
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).bin bs=128k conv=sync
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).bin bs=128k conv=sync
|
||||||
( \
|
( \
|
||||||
dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(call get_human_name)-fit-uImage.itb bs=2048k conv=sync; \
|
dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-fit-uImage.itb bs=2048k conv=sync; \
|
||||||
dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
|
dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
|
||||||
) > $(BIN_DIR)/$(IMG_PREFIX)-$(call get_human_name)-fit-$(1).bin
|
) > $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-fit-$(1).bin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/mkfs/targz
|
define Image/mkfs/targz
|
||||||
|
|
||||||
$(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-$(call get_human_name)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
$(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build/ubifs
|
define Image/Build/ubifs
|
||||||
|
|
||||||
ifneq ($($(PROFILE)_UBIFS_OPTS),)
|
ifneq ($($(PROFILE)_UBIFS_OPTS),)
|
||||||
$(CP) $(KDIR)/root.ubifs $(BIN_DIR)/$(IMG_PREFIX)-$(call get_human_name)-rootfs.ubifs
|
$(CP) $(KDIR)/root.ubifs $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.ubifs
|
||||||
endif
|
endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build/ubi
|
define Image/Build/ubi
|
||||||
|
|
||||||
ifneq ($($(PROFILE)_UBI_OPTS),)
|
ifneq ($($(PROFILE)_UBI_OPTS),)
|
||||||
$(CP) $(KDIR)/root.ubi $(BIN_DIR)/$(IMG_PREFIX)-$(call get_human_name)-rootfs.ubi
|
$(CP) $(KDIR)/root.ubi $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.ubi
|
||||||
endif
|
endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue