search for: __init_len

Displaying 2 results from an estimated 2 matches for "__init_len".

Did you mean: __init_fn
2015 Oct 05
7
[PATCH 0/4] Improve linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com> These patches basically remove unused linker scripts and port a change that was made to an unused script. Those are to be applied on top of the gcc 5 bug fixes as they would conflict otherwise. Sylvain Gault (4): diag/mbr: fix dependency to linker script Remove unused linker scripts core: Make symbols defined in linker script HIDDEN
2015 Oct 05
0
[PATCH 2/4] Remove unused linker scripts
...- HIDDEN(__stack16_len = ABSOLUTE(__stack16_end) - ABSOLUTE(__stack16_start)); - HIDDEN(__stack16_dwords = (__stack16_len + 3) >> 2); - - /* Initialized sections */ - - . = 0x7c00; - .init : { - FILL(0x90909090) - HIDDEN(__init_start = .); - *(.init) - HIDDEN(__init_end = .); - } - HIDDEN(__init_len = ABSOLUTE(__init_end) - ABSOLUTE(__init_start)); - HIDDEN(__init_dwords = (__init_len + 3) >> 2); - - .text16 : { - FILL(0x90909090) - HIDDEN(__text16_start = .); - *(.text16) - HIDDEN(__text16_end = .); - } - HIDDEN(__text16_len = ABSOLUTE(__text16_end) - ABSOLUTE(__text16_start)); - HI...