#
50b27a85 |
| 15-Jun-2023 |
Callum Farmer <gmbr3@opensuse.org> |
ARM32: fix image
- Make it actually work - Split text/data/reloc/rodata sections - Move hash sections to past end of image (un-needed in PE) - Correct section & file alignment - Correct image size
ARM32: fix image
- Make it actually work - Split text/data/reloc/rodata sections - Move hash sections to past end of image (un-needed in PE) - Correct section & file alignment - Correct image size - rename .reloc to .areloc within ELF as only on ARM32 does this name cause it to be marked as REL and subsequently mistakenly added to RELSZ
Builds correctly & tested working in QEMU
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
show more ...
|
#
64027ee9 |
| 07-Jun-2023 |
Callum Farmer <gmbr3@opensuse.org> |
Mark _start as function
Currently marked as NOTYPE
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
|
#
db351e8a |
| 02-Jun-2023 |
Callum Farmer <gmbr3@opensuse.org> |
ARM32: _start must be global
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
|
#
039ca9d9 |
| 31-May-2023 |
Callum Farmer <gmbr3@opensuse.org> |
Add full Data Directories table
Microsoft dumpbin doesn't like the binary if the full table doesn't exist
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
|
#
67762bdb |
| 23-May-2023 |
b'Nigel Croxon <allura@localhost> |
Merge /u/gmbr3/gnu-efi/ branch ia32 into master
https://sourceforge.net/p/gnu-efi/code/merge-requests/54/
|
#
0fe8def9 |
| 23-May-2023 |
Callum Farmer <gmbr3@opensuse.org> |
ARM32: fix L_DYNAMIC
L_DYNAMIC must be 32bits to be PCREL
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
|
#
a1ffc0d4 |
| 22-May-2023 |
b'Nigel Croxon <allura@localhost> |
Merge /u/gmbr3/gnu-efi/ branch ia32 into master
https://sourceforge.net/p/gnu-efi/code/merge-requests/53/
|
#
9e6cb215 |
| 20-May-2023 |
Callum Farmer <gmbr3@opensuse.org> |
Avoid processor dependent sizes in assembly
.word -> .2byte .short -> .2byte .long -> .4byte .quad -> .8byte
Reference: https://github.com/rhboot/gnu-efi/commit/b83f0845b556506265d25d6a839a23c77b03
Avoid processor dependent sizes in assembly
.word -> .2byte .short -> .2byte .long -> .4byte .quad -> .8byte
Reference: https://github.com/rhboot/gnu-efi/commit/b83f0845b556506265d25d6a839a23c77b037ae4 Fixes: https://sourceforge.net/p/gnu-efi/bugs/37/
Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
show more ...
|
#
4f8b339f |
| 28-Mar-2023 |
Peter Jones <pjones@redhat.com> |
Make ELF constructors and destructors work
This makes setup and teardown functions defined with __attribute__((__constructor__) and __attribute__((__destructor__)) work in normal circumstances in EF
Make ELF constructors and destructors work
This makes setup and teardown functions defined with __attribute__((__constructor__) and __attribute__((__destructor__)) work in normal circumstances in EFI binaries.
A couple of notes: - it implements both the old-style .ctors/.dtors methods and the newer style .init_array/.fini_array ELF constructor and destructor arrays, processed in the order: .init_array[] .ctors[] efi_main() .dtors[] .fini_array[] - Destructors will only be called if efi_main() exits using "return"; any call to Exit() will still longjmp() past them. - InitializeLib() has already been called before constructors run, so they don't need to call it (and neither does anything else.) For compatibility, it has been altered so calling it more than once is safe. - No attempt is made to handle any constructor or destructor with a prototype other than "void func(void);", but note that InitializeLib has been called, so LibImageHandle, ST, BS, and RT are set. - The init_array/ctor/dtor/fini_array lists aren't the using the GNU "CONSTRUCTOR" output section command, so they don't start with a size. - The lists are individually sorted during the link stage via SORT_BY_NAME() in the linker script. - The default (empty) init_array/ctor/dtor/fini_array lists are padded out to 8-byte alignment with ".p2align 3, 0", and each list always has at least one ".long 0" at the end of it (even if it's completely empty). As a result, they can have NULLs that need to be skipped. The sections they're in are mergeable, so the NULLs don't have to be exclusively at the end. - The ia64 and mips64el arches have not been tested.
Signed-off-by: Peter Jones <pjones@redhat.com>
show more ...
|
#
803b49c4 |
| 06-Aug-2022 |
Sergei Trofimovich <slyich@gmail.com> |
*/*.S: add non-executable GNU stack marking on ELF-linux
binutils-2.39 enabed a few warning by default (https://sourceware.org/pipermail/binutils/2022-August/122246.html):
> The ELF linker will now
*/*.S: add non-executable GNU stack marking on ELF-linux
binutils-2.39 enabed a few warning by default (https://sourceware.org/pipermail/binutils/2022-August/122246.html):
> The ELF linker will now generate a warning message if the stack is made executable.
Let's suppress the warnings in assembly files by adding non-executables stack markings. This fixes at least systemd build which uses '-Wl,--fatal-warnings':
https://github.com/systemd/systemd/issues/24226
show more ...
|
#
31a6aab4 |
| 28-Jul-2021 |
Alfonso Sánchez-Beato <alfonso.sanchez-beato@canonical.com> |
Set NumberOfSymbols to zero
Acoording to what the spec says about the number of sybols [1]:
"This value should be zero for an image because COFF debugging information is deprecated."
Changing as i
Set NumberOfSymbols to zero
Acoording to what the spec says about the number of sybols [1]:
"This value should be zero for an image because COFF debugging information is deprecated."
Changing as if not zero it causes problems to llvm-objcopy. This affects only the architectures where COFF is not supported by objcopy and where we build the PE header via assembly code.
[1] https://docs.microsoft.com/en-us/windows/win32/debug/pe-format
show more ...
|
#
88e3cf95 |
| 23-Dec-2015 |
Nigel Croxon <nigel.croxon@hpe.com> |
From: Ard Biesheuvel <ard.biesheuvel@linaro.org> Subject: [PATCH 1/2] Relicense ARM and AARCH64 source files as both BSD and GPL
This updates the licenses of the files authored by me under lib/arm a
From: Ard Biesheuvel <ard.biesheuvel@linaro.org> Subject: [PATCH 1/2] Relicense ARM and AARCH64 source files as both BSD and GPL
This updates the licenses of the files authored by me under lib/arm and lib/aarch64 to be both 2-clause BSD and GPL v2+
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Nigel Croxon <nigel.croxon@hpe.com>
show more ...
|
#
530d68ba |
| 25-Nov-2014 |
Nigel Croxon <nigel.croxon@hp.com> |
The gnu-efi-3.0 toplevel subdirectory is really annoying. Kill it.
Signed-off-by: Peter Jones <pjones@redhat.com> Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
|