diff options
author | Alexander Egorenkov <egorenar-dev@posteo.net> | 2021-04-17 09:50:39 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-05-23 15:11:38 +0200 |
commit | 42cd06f7fe49668399a010db8f5d2100e45465a9 (patch) | |
tree | 96b9f023df98c049d37b68fb117156ea02b9a7bc /package/boot/kexec-tools/Makefile | |
parent | 0097899da79f1140c66fa820be31005c89933a0e (diff) | |
download | upstream-42cd06f7fe49668399a010db8f5d2100e45465a9.tar.gz upstream-42cd06f7fe49668399a010db8f5d2100e45465a9.tar.bz2 upstream-42cd06f7fe49668399a010db8f5d2100e45465a9.zip |
kexec-tools: add patch to fix issue with appended DTB and zImage on ARM
This patch fixes a recently found problem when a zImage passed to
kexec-tools contains an appended DTB. In that case kexec boot fails because
the decompressor wrongly tries to use the non-existing appended DTB instaed
of the one passed in the register r2.
- http://lists.infradead.org/pipermail/kexec/2021-April/022353.html
Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
Diffstat (limited to 'package/boot/kexec-tools/Makefile')
-rw-r--r-- | package/boot/kexec-tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/kexec-tools/Makefile b/package/boot/kexec-tools/Makefile index 36fe53671a..0fbbefdc3b 100644 --- a/package/boot/kexec-tools/Makefile +++ b/package/boot/kexec-tools/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=kexec-tools PKG_VERSION:=2.0.21 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/kexec |