build-distro: add isodata metadata support

A bunch of duplicated variable names for mkimage,
just short-circuit those to the already available
(and hopefully filled in) BOOT_* ones.
This commit is contained in:
Michael Shigorin 2018-07-25 16:21:00 +03:00
parent 3c2ef1c035
commit a257c2aece

View File

@ -9,6 +9,16 @@ BOOT_VOLI := $(shell echo $(META_VOL_ID) | cut -c1-32)
BOOT_VOLS := $(META_VOL_SET) BOOT_VOLS := $(META_VOL_SET)
BOOT_BIBL := $(META_BIBLIO) BOOT_BIBL := $(META_BIBLIO)
BOOT_ABST := $(META_ABSTRACT) BOOT_ABST := $(META_ABSTRACT)
ISODATA_SYSI = $(BOOT_SYSI)
ISODATA_PUBL = $(BOOT_PUBL)
ISODATA_PREP = $(BOOT_PREP)
ISODATA_APPI = $(BOOT_APPI)
ISODATA_VOLI = $(BOOT_VOLI)
ISODATA_VOLS = $(BOOT_VOLS)
ISODATA_BIBL = $(BOOT_BIBL)
ISODATA_ABST = $(BOOT_ABST)
DATE_F := $(shell date +%F) DATE_F := $(shell date +%F)
ifeq (isodata,$(IMAGE_PACKTYPE)) ifeq (isodata,$(IMAGE_PACKTYPE))