From 2249e7312eaa69f5b9209d099a35bb88439048e5 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 18 Nov 2015 14:58:10 +0100 Subject: [PATCH] Makefile: add efi target make an UEFI bootable image --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 44c58cc800..8281f90d50 100644 --- a/Makefile +++ b/Makefile @@ -251,6 +251,10 @@ hostimage: all ./dracut.sh -H -l -f test-$(shell uname -r).img $(shell uname -r) @echo wrote test-$(shell uname -r).img +efi: all + ./dracut.sh --uefi -H -l -f linux-$(shell uname -r).efi $(shell uname -r) + @echo wrote linux-$(shell uname -r).efi + AUTHORS: git shortlog --numbered --summary -e |while read a rest || [ -n "$$rest" ]; do echo $$rest;done > AUTHORS