- Update shim-mokx-support.patch to support the resetting of MOK blacklist - Fix the variable checking in get_variable_attr - Improve the boot entry pathes and avoid generating the boot entries that are already there - Update SUSE certificate - Update scritps to remove the creation of the temporary nss database - Remove the kernel version of the build server - Match the the prefix of the project name properly by escaping the percent sign. OBS-URL: https://build.opensuse.org/request/show/221745 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory/shim?expand=0&rev=57
14 lines
477 B
Diff
14 lines
477 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 91e6bcd..6ed5ba7 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -63,7 +63,7 @@ shim_cert.h: shim.cer
|
|
|
|
version.c : version.c.in
|
|
sed -e "s,@@VERSION@@,$(VERSION)," \
|
|
- -e "s,@@UNAME@@,$(shell uname -a)," \
|
|
+ -e "s,@@UNAME@@,$(shell uname -o)," \
|
|
-e "s,@@COMMIT@@,$(shell if [ -d .git ] ; then git log -1 --pretty=format:%H ; elif [ -f commit ]; then cat commit ; else echo commit id not available; fi)," \
|
|
< version.c.in > version.c
|
|
|