mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
0d97631392
This purgatory implementation is based on the versions from kexec-tools and kexec-lite, with additional changes. Signed-off-by: Thiago Jung Bauermann <bauerman@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
16 lines
426 B
Makefile
16 lines
426 B
Makefile
targets += trampoline.o purgatory.ro kexec-purgatory.c
|
|
|
|
LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined
|
|
|
|
$(obj)/purgatory.ro: $(obj)/trampoline.o FORCE
|
|
$(call if_changed,ld)
|
|
|
|
CMD_BIN2C = $(objtree)/scripts/basic/bin2c
|
|
quiet_cmd_bin2c = BIN2C $@
|
|
cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
|
|
|
|
$(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
|
|
$(call if_changed,bin2c)
|
|
|
|
obj-y += kexec-purgatory.o
|