Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 74763
b: refs/heads/master
c: b898a42
h: refs/heads/master
i:
  74761: 9f5b0a3
  74759: 0801c12
v: v3
  • Loading branch information
Bernhard Walle authored and Tony Luck committed Dec 8, 2007
1 parent 27ab3d4 commit 67dc996
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: afc2cf35b43ca58bd73b86b2f72af8b9bdb67ab8
refs/heads/master: b898a424ed68ba73d6d4562d6370985b2e9bec61
3 changes: 2 additions & 1 deletion trunk/arch/ia64/hp/sim/boot/bootloader.lds
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ SECTIONS
.sdata : { *(.sdata) }
_edata = .;

_bss = .;
__bss_start = .;
.sbss : { *(.sbss) *(.scommon) }
.bss : { *(.bss) *(COMMON) }
. = ALIGN(64 / 8);
__bss_stop = .;
_end = . ;

/* Stabs debugging sections. */
Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/ia64/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ static struct resource bss_resource = {
.name = "Kernel bss",
.flags = IORESOURCE_BUSY | IORESOURCE_MEM
};
extern char _text[], _end[], _etext[], _edata[], _bss[];

unsigned long ia64_max_cacheline_size;

Expand Down Expand Up @@ -206,7 +205,7 @@ static int __init register_memory(void)
code_resource.end = ia64_tpa(_etext) - 1;
data_resource.start = ia64_tpa(_etext);
data_resource.end = ia64_tpa(_edata) - 1;
bss_resource.start = ia64_tpa(_bss);
bss_resource.start = ia64_tpa(__bss_start);
bss_resource.end = ia64_tpa(_end) - 1;
efi_initialize_iomem_resources(&code_resource, &data_resource,
&bss_resource);
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/ia64/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,12 @@ SECTIONS
.sdata : AT(ADDR(.sdata) - LOAD_OFFSET)
{ *(.sdata) *(.sdata1) *(.srdata) }
_edata = .;
_bss = .;
__bss_start = .;
.sbss : AT(ADDR(.sbss) - LOAD_OFFSET)
{ *(.sbss) *(.scommon) }
.bss : AT(ADDR(.bss) - LOAD_OFFSET)
{ *(.bss) *(COMMON) }
__bss_stop = .;

_end = .;

Expand Down

0 comments on commit 67dc996

Please sign in to comment.