generate.mk 2.96 KB
Newer Older
1
ifdef BUILDDIR
Michael Shigorin's avatar
Michael Shigorin committed
2

3 4 5
# in deciseconds
DEFAULT_TIMEOUT = 90

6 7
# prepare data for syslinux installation;
# see also stage1/scripts.d/01-syslinux
Michael Shigorin's avatar
Michael Shigorin committed
8

9 10 11 12
include $(BUILDDIR)/distcfg.mk

ifndef BOOTLOADER
$(error syslinux feature enabled but BOOTLOADER undefined)
Michael Shigorin's avatar
Michael Shigorin committed
13 14
endif

15 16
# UI is backed by modules in modern syslinux
# (except for built-in text prompt)
17
ifdef SYSLINUX_UI
18
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
19
else
20 21
$(warning no syslinux ui configured, default is now none)
SYSLINUX_UI := none
22
endif
23

24
# SUBPROFILES are considered SYSLINUX_CFG too
25
# (note these can appear like stage2@live);
26
# 01defaults.cfg is included indefinitely
27
SYSLINUX_CFG := $(SYSLINUX_CFG) $(SUBPROFILE_DIRS) defaults
28

29
DSTDIR := $(BUILDDIR)/stage1/files/syslinux/.in
Michael Shigorin's avatar
Michael Shigorin committed
30

31 32 33 34 35 36
# we can do SYSLINUX_{CFG,MODULES,FILES}
# CFG have only cfg snippet
# FILES have only filenames (absolute or relative to /usr/lib/syslinux/)
# MODULES must have both cfg snippet and syslinux module filename
#         (and get included iff cfg snippet AND module exist)
cfg = $(wildcard cfg.in/??$(1).cfg)
Michael Shigorin's avatar
Michael Shigorin committed
37

38
# NB: list position determined by file numbering (*.cfg sorting)
39 40 41 42 43 44 45 46 47 48
#
# config snippets are copied into generated profile where they can
# be also tested against syslinux modules (some can be unavailable);
# we can't do tests right now since that implies host syslinux being
# identical to build system one which might be not the case...
#
# have to piggyback parameters as we're running in host system yet,
# and files involved will appear inside instrumental chroot
#
# arguments get evaluated before recipe body execution thus prep
49

50
all: debug timeout
51
	@### proper text branding should be implemented
52
	@echo $(SYSLINUX_MODULES) > $(DSTDIR)/modules.list
53
	@echo $(SYSLINUX_FILES) > $(DSTDIR)/syslinux.list
54 55
	@sed -i \
		-e 's,@mkimage-profiles@,$(IMAGE_NAME),' \
56
		-e 's,@relname@,$(RELNAME),' \
57
		$(DSTDIR)/*.cfg
58

59
# integerity check
60
timeout: distro
61 62 63 64 65 66 67
	@if [ "$(SYSLINUX_TIMEOUT)" -ge 0 ] 2>/dev/null; then \
		TIMEOUT="$(SYSLINUX_TIMEOUT)"; \
	else \
		TIMEOUT="$(DEFAULT_TIMEOUT)"; \
	fi; \
	sed -i "s,@timeout@,$$TIMEOUT," $(DSTDIR)/*.cfg

68 69 70 71 72 73 74 75
distro: bootargs
	@if [ -n "$(META_VOL_SET)" ]; then \
		DISTRO="$(META_VOL_SET)"; \
	else \
		DISTRO="ALT Linux"; \
	fi; \
	sed -i "s,@distro@,$$DISTRO," $(DSTDIR)/*.cfg

76
# pass over additional parameters, if any
77
bootargs: clean
78 79
	@if [ -n "$(STAGE2_BOOTARGS)" ]; then \
		sed -i "s,@bootargs@,$(STAGE2_BOOTARGS)," $(DSTDIR)/*.cfg; \
80 81 82
	fi; \
	sed -i "s,@bootargs@,," $(DSTDIR)/*.cfg

83 84
clean: copy
	@if [ "$(SYSLINUX_UI)" = gfxboot ]; then \
85
		sed -i "s/\^//;/menu label /d" $(DSTDIR)/*.cfg; \
86 87
	fi

88 89 90 91 92
copy: prep
	@cp -pLt $(DSTDIR) -- $(sort \
		$(foreach C,$(SYSLINUX_CFG),$(call cfg,$(C))) \
		$(foreach M,$(SYSLINUX_MODULES),$(call cfg,$(M))))

93
prep:
Michael Shigorin's avatar
Michael Shigorin committed
94
	@mkdir -p $(DSTDIR)
Michael Shigorin's avatar
Michael Shigorin committed
95 96

debug:
97
	@if [ -n "$(DEBUG)" ]; then \
98 99 100 101 102 103 104 105
		echo "** BOOTLOADER: $(BOOTLOADER)"; \
		echo "** SYSLINUX_UI: $(SYSLINUX_UI)"; \
		echo "** SYSLINUX_CFG: $(SYSLINUX_CFG)"; \
		echo "** SYSLINUX_FILES: $(SYSLINUX_FILES)"; \
		echo "** SYSLINUX_MODULES: $(SYSLINUX_MODULES)"; \
	fi

endif