e53b6acb56
Thanks go to lakostis@ (see #18047) for all the aic94xx reminders and the final testing of the proposed image.
25 lines
662 B
Makefile
25 lines
662 B
Makefile
# step 4: build install2 subprofile (installer "live" part)
|
|
|
|
ifndef GLOBAL_BUILDDIR
|
|
$(error GLOBAL_BUILDDIR not defined)
|
|
endif
|
|
|
|
default: all
|
|
|
|
include $(GLOBAL_BUILDDIR)/distcfg.mk
|
|
include $(GLOBAL_BUILDDIR)/functions.mk
|
|
include $(MKIMAGE_PREFIX)/config.mk
|
|
|
|
# need kernel modules only (which require corresponding kernel-image);
|
|
# these go into work chroot; NB: no vmlinuz there
|
|
IMAGE_PACKAGES_REGEXP = $(call kpackages,$(INSTALLER_KMODULES),$(INSTALLER_KFLAVOUR))
|
|
IMAGE_PACKAGES = $(COMMON_PACKAGES) \
|
|
$(INSTALL2_PACKAGES) \
|
|
./packages
|
|
|
|
MKI_PACK_RESULTS = squash:altinst
|
|
|
|
include $(MKIMAGE_PREFIX)/targets.mk
|
|
|
|
all: build-image run-image-scripts pack-image
|