diff --git a/src/stub/l_lx_elf86.lds b/src/stub/l_lx_elf86.lds index 8f891b00..b1e66aa2 100644 --- a/src/stub/l_lx_elf86.lds +++ b/src/stub/l_lx_elf86.lds @@ -32,8 +32,6 @@ PHDRS { text PT_LOAD FILEHDR PHDRS ; data PT_LOAD ; /* for setting brk(0) */ - /* 3rd Phdr was not worth it; use "upx -d" first, then apply ldd */ - /*null PT_NULL;*/ /* changed to PT_DYNAMIC for ldd */ } SECTIONS { @@ -43,9 +41,6 @@ SECTIONS *(.text) *(.data) } : text - /* 0x08048000: customary Linux/x86 Elf .text start */ - /* PackLinuxI386::buildLinuxLoader will overwrite the address anyway. */ - . = 0x08048000 + (0xfff & .); .data : { } : data }