diff options
| author | Ada Christine <adachristine18@gmail.com> | 2021-12-19 01:16:51 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2021-12-19 01:16:51 +0000 |
| commit | bff63a4337eb3388617d230970c5eb2684d6a215 (patch) | |
| tree | f40891f45918b23dac0f31888142136434c7fc8c /shim/shim.ld | |
| parent | d5f485a4f6801f58cbb2bc9d8e80c955c79ff044 (diff) | |
i don't know what i'm doing anymore
Diffstat (limited to 'shim/shim.ld')
| -rw-r--r-- | shim/shim.ld | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/shim/shim.ld b/shim/shim.ld deleted file mode 100644 index f0643ca..0000000 --- a/shim/shim.ld +++ /dev/null @@ -1,49 +0,0 @@ -ENTRY(efi_shim_entry) - -SECTIONS -{ - . = sizeof_headers; - - .rel : - { - *(.rel.*) - } - - .rela : - { - *(.rela.*) - } - - .text : ALIGN(4K) - { - PROVIDE(_text_begin = .); - *(.text) - . = ALIGN(4K); - PROVIDE(_text_end = .); - } =0xcc - - .data : - { - PROVIDE(_data_begin = .); - *(.rodata) - *(.data) - } - - .data.rel : - { - *(.data.rel) - *(.data.rel.*) - } - - .bss : - { - *(.bss) - PROVIDE(_data_end = .); - } - - /DISCARD/ : - { - *(.eh_frame) - } -} - |
