search for: stack_len

Displaying 3 results from an estimated 3 matches for "stack_len".

Did you mean: __stack_len
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
...break; + } + puts(" access to high memory\n"); } - puts(" access to high memory\n"); /* Set up a drive parameter table */ if (geometry->driveno & 0x80) { @@ -956,10 +971,12 @@ total_size += cmdline_len; /* Command line */ stack_len = stack_needed(); total_size += stack_len; /* Stack */ - printf("Code %u, meminfo %u, cmdline %u, stack %u\n", - hptr->total_size, e820_len, cmdline_len, stack_len); - printf("Total size needed = %u bytes, allocating %uK\n", - total_size, (total_...
2015 Oct 05
0
[PATCH 2/4] Remove unused linker scripts
...= .); - *(.gentextnr) - HIDDEN(__gentextnr_end = .); - } - HIDDEN(__gentextnr_len = ABSOLUTE(__gentextnr_end) - ABSOLUTE(__gentextnr_start)); - HIDDEN(__gentextnr_dwords = (__gentextnr_len + 3) >> 2); - - . = STACK_BASE; - .stack16 : AT(STACK_BASE) { - HIDDEN(__stack16_start = .); - . += STACK_LEN; - HIDDEN(__stack16_end = .); - } - 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) - H...
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