mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
grub: fix mkimage on riscv64 and fix cdrom
the riscv64 image needs more than 1.44MB Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Michael Tremer
parent
16b6a6fd2c
commit
64d0f1a074
@@ -220,7 +220,7 @@ ifeq "$(EFI)" "1"
|
|||||||
< $(DIR_SRC)/config/cdrom/grub.cfg > $(DIR_TMP)/cdrom/EFI/BOOT/grub.cfg
|
< $(DIR_SRC)/config/cdrom/grub.cfg > $(DIR_TMP)/cdrom/EFI/BOOT/grub.cfg
|
||||||
|
|
||||||
# Create the EFI Eltorito image
|
# Create the EFI Eltorito image
|
||||||
dd if=/dev/zero of=$(DIR_TMP)/cdrom/boot/isolinux/efiboot.img bs=1k count=1440
|
dd if=/dev/zero of=$(DIR_TMP)/cdrom/boot/isolinux/efiboot.img bs=1k count=2880
|
||||||
mkdosfs -F 12 -n "IPFIRE_EFI" $(DIR_TMP)/cdrom/boot/isolinux/efiboot.img
|
mkdosfs -F 12 -n "IPFIRE_EFI" $(DIR_TMP)/cdrom/boot/isolinux/efiboot.img
|
||||||
|
|
||||||
# Mount the EFI image
|
# Mount the EFI image
|
||||||
|
|||||||
1
lfs/grub
1
lfs/grub
@@ -96,6 +96,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-2.06-remove_os_prober_disabled_warning.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-2.06-remove_os_prober_disabled_warning.patch
|
||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-2.02_disable_vga_fallback.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-2.02_disable_vga_fallback.patch
|
||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-Use-zifencei-on-riscv.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-Use-zifencei-on-riscv.patch
|
||||||
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub/grub-Handle-R_RISCV_CALL_PLT-reloc.patch
|
||||||
cd $(DIR_APP) && autoreconf -vfi
|
cd $(DIR_APP) && autoreconf -vfi
|
||||||
|
|
||||||
# Install unifont
|
# Install unifont
|
||||||
|
|||||||
48
src/patches/grub/grub-Handle-R_RISCV_CALL_PLT-reloc.patch
Normal file
48
src/patches/grub/grub-Handle-R_RISCV_CALL_PLT-reloc.patch
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
From 64be669638e198bc0c7c1a344547265dfacd2470 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Mon, 23 Jan 2023 15:29:02 -0800
|
||||||
|
Subject: [PATCH] risc-v: Handle R_RISCV_CALL_PLT reloc
|
||||||
|
|
||||||
|
GNU assembler starting 2.40 release always generates R_RISCV_CALL_PLT
|
||||||
|
reloc for call in assembler [1], similarly llvm does not make
|
||||||
|
distinction between R_RISCV_CALL_PLT and R_RISCV_CALL [2]
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://lists.gnu.org/archive/html/grub-devel/2023-02/msg00143.html]
|
||||||
|
|
||||||
|
[1] https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=70f35d72ef04cd23771875c1661c9975044a749c
|
||||||
|
[2] https://reviews.llvm.org/D132530
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
grub-core/kern/riscv/dl.c | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
--- a/grub-core/kern/riscv/dl.c
|
||||||
|
+++ b/grub-core/kern/riscv/dl.c
|
||||||
|
@@ -188,6 +188,7 @@ grub_arch_dl_relocate_symbols (grub_dl_t
|
||||||
|
break;
|
||||||
|
|
||||||
|
case R_RISCV_CALL:
|
||||||
|
+ case R_RISCV_CALL_PLT:
|
||||||
|
{
|
||||||
|
grub_uint32_t *abs_place = place;
|
||||||
|
grub_ssize_t off = sym_addr - (grub_addr_t) place;
|
||||||
|
--- a/util/grub-mkimagexx.c
|
||||||
|
+++ b/util/grub-mkimagexx.c
|
||||||
|
@@ -1294,6 +1294,7 @@ SUFFIX (relocate_addrs) (Elf_Ehdr *e, st
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case R_RISCV_CALL:
|
||||||
|
+ case R_RISCV_CALL_PLT:
|
||||||
|
{
|
||||||
|
grub_uint32_t hi20, lo12;
|
||||||
|
|
||||||
|
@@ -1725,6 +1726,7 @@ translate_relocation_pe (struct translat
|
||||||
|
case R_RISCV_BRANCH:
|
||||||
|
case R_RISCV_JAL:
|
||||||
|
case R_RISCV_CALL:
|
||||||
|
+ case R_RISCV_CALL_PLT:
|
||||||
|
case R_RISCV_PCREL_HI20:
|
||||||
|
case R_RISCV_PCREL_LO12_I:
|
||||||
|
case R_RISCV_PCREL_LO12_S:
|
||||||
Reference in New Issue
Block a user