Autogenerating the break_virtual symbol

This commit is contained in:
Bahadir Balban
2009-09-16 18:04:09 +03:00
parent ee44a2007a
commit 1925cd5704
4 changed files with 78 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
/*
* Linker script that packs all containers in loader image.
* Loader linker script that contains kernel and container images
*
* Copyright (C) 2007-2009 B Labs Ltd.
* Copyright (C) 2008-2009 B Labs Ltd.
*/
ENTRY(_start)
@@ -13,17 +13,15 @@ SECTIONS
.rodata1 : { *(.rodata1) }
.data :
{
*(.data)
*(.data)
_start_kernel = .;
*(.kernel)
_end_kernel = .;
_start_containers = .;
*(.containers)
_end_containers = .;
}
_start_containers = .;
.cont.0 : { *(.cont.0) }
.cont.1 : { *(.cont.1) }
_end_containers = .;
.got : { *(.got) *(.got.plt) }
.bss : { *(.bss) }
}