For further information see: http://wiki.netbsd.org/rumpkernel/. In this version I ported the central rump components to Genode in order to take advantage of NetBSD file system implementation. The new 'dde_rump' repository contains the Genode version of the rump libraries and a 'rump_fs' server that implements Genode file-system-session interface. Currently ext2, iso9660, and fat file-systems are supported. Issue #1048
33 lines
582 B
Plaintext
33 lines
582 B
Plaintext
/*
|
|
* \brief Additonial sections required by all rump libraries
|
|
*
|
|
* Modified version of original linker script
|
|
*
|
|
* \author Sebastiasn Sumpf
|
|
* \date 2013-12-12
|
|
*/
|
|
|
|
SECTIONS
|
|
{
|
|
.rump_modules :
|
|
{
|
|
__start_link_set_modules = .;
|
|
KEEP(*(link_set_modules));
|
|
__stop_link_set_modules = .;
|
|
} : rw
|
|
|
|
.rump_domains :
|
|
{
|
|
__start_link_set_domains = .;
|
|
KEEP(*(link_set_domains));
|
|
__stop_link_set_domains = .;
|
|
} : rw
|
|
|
|
.rump_components :
|
|
{
|
|
__start_link_set_rump_components = .;
|
|
KEEP(*(link_set_rump_components));
|
|
__stop_link_set_rump_components = .;
|
|
} : rw
|
|
}
|