Przeglądaj źródła

Merge /u/gmbr3/gnu-efi/ branch ia32 into master

https://sourceforge.net/p/gnu-efi/code/merge-requests/54/
b'Nigel Croxon 1 rok temu
rodzic
commit
67762bdb85
2 zmienionych plików z 5 dodań i 5 usunięć
  1. 1 1
      gnuefi/crt0-efi-arm.S
  2. 4 4
      lib/ctors.S

+ 1 - 1
gnuefi/crt0-efi-arm.S

@@ -142,7 +142,7 @@ _start:
 	ldr		pc, [sp], #4
 
 .L_DYNAMIC:
-	.2byte		_DYNAMIC - .
+	.4byte		_DYNAMIC - .
 
 #if defined(__ELF__) && defined(__linux__)
 	.section .note.GNU-stack,"",%progbits

+ 4 - 4
lib/ctors.S

@@ -8,28 +8,28 @@
  * end/END definitions, and the fact that they're mergeable, they can also
  * have NULLs which aren't guaranteed to be at the end.
  */
-	.section .init_array, "aw", @init_array
+	.section .init_array,"aw",%init_array
 	.p2align 3, 0
 	.globl __init_array_start
 __init_array_start:
 	.p2align 3, 0
 	.globl __init_array_end
 __init_array_end:
-	.section .ctors, "aw", @progbits
+	.section .ctors,"aw",%progbits
 	.p2align 3, 0
 	.globl __CTOR_LIST__
 __CTOR_LIST__:
 	.p2align 3, 0
 	.globl __CTOR_END__
 __CTOR_END__:
-	.section .dtors, "aw", @progbits
+	.section .dtors,"aw",%progbits
 	.p2align 3, 0
 	.globl __DTOR_LIST__
 __DTOR_LIST__:
 	.p2align 3, 0
 	.globl __DTOR_END__
 __DTOR_END__:
-	.section .fini_array, "aw", @fini_array
+	.section .fini_array,"aw",%fini_array
 	.p2align 3, 0
 	.globl __fini_array_start
 __fini_array_start: