mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
4b46abf813
This patch removes the detection of statically linked executables from the base framework. It thereby fixes the corner cases encountered with Sculpt when obtaining the binaries of the runtime from the depot_rom service that is hosted within the runtime. Statically linked binaries and hybrid Linux/Genode (lx_hybrid) binaries can still be started by relabeling the ROM-session route of "ld.lib.so" to the binary name, pretending that the binary is the dynamic linker. This can be achieved via init's label rewriting mechanism: <route> <service name="ROM" unscoped_label="ld.lib.so"> <parent label="test-platform"/> </service> </route> However, as this is quite cryptic and would need to be applied for all lx_hybrid components, the patch adds a shortcut to init's configuration. One can simply add the 'ld="no"' attribute to the <start> node of the corresponding component: <start name="test-platform" ld="no"/> Fixes #2866
165 lines
4.5 KiB
Plaintext
165 lines
4.5 KiB
Plaintext
#
|
|
# Build
|
|
#
|
|
|
|
assert_spec x86
|
|
|
|
set build_components {
|
|
core init
|
|
drivers/timer
|
|
server/dynamic_rom
|
|
test/input
|
|
}
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
append_platform_drv_build_components
|
|
|
|
lappend_if [have_spec ps2] build_components drivers/input/spec/ps2
|
|
lappend_if [have_spec sdl] build_components drivers/framebuffer/spec/sdl
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route/>
|
|
<default caps="100"/>
|
|
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
<route>
|
|
<service name="PD"> <parent/> </service>
|
|
<service name="CPU"> <parent/> </service>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="ROM"> <parent/> </service>
|
|
<service name="IO_MEM"> <parent/> </service>
|
|
<service name="IRQ"> <parent/> </service>
|
|
<service name="IO_PORT"> <parent/> </service>
|
|
</route>
|
|
</start>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append_if [have_spec ps2] config {
|
|
<start name="ps2_drv">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="Input"/></provides>
|
|
<config verbose_keyboard="no" verbose_mouse="no" verbose_scancodes="no"
|
|
capslock_led="rom" numlock_led="rom" scrlock_led="rom"/>
|
|
<route>
|
|
<service name="ROM" label="capslock"> <child name="dynamic_rom"/> </service>
|
|
<service name="ROM" label="numlock"> <child name="dynamic_rom"/> </service>
|
|
<service name="ROM" label="scrlock"> <child name="dynamic_rom"/> </service>
|
|
<service name="ROM"> <parent/> </service>
|
|
<service name="CPU"> <parent/> </service>
|
|
<service name="PD"> <parent/> </service>
|
|
<service name="IO_PORT"> <parent/> </service>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="Platform"> <any-child/> </service>
|
|
</route>
|
|
</start>
|
|
<alias name="input_drv" child="ps2_drv"/>}
|
|
|
|
append_if [have_spec sdl] config {
|
|
<start name="fb_sdl" ld="no">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides> <service name="Input"/> <service name="Framebuffer"/> </provides>
|
|
<route>
|
|
<service name="ROM"> <parent/> </service>
|
|
<service name="CPU"> <parent/> </service>
|
|
<service name="PD"> <parent/> </service>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
</route>
|
|
</start>
|
|
<alias name="input_drv" child="fb_sdl"/>}
|
|
|
|
append config {
|
|
|
|
<start name="dynamic_rom">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides> <service name="ROM"/> </provides>
|
|
<config verbose="no">
|
|
<rom name="capslock">
|
|
<inline> <capslock enabled="no"/> </inline>
|
|
<sleep milliseconds="250" />
|
|
<inline> <capslock enabled="yes"/> </inline>
|
|
<sleep milliseconds="250" />
|
|
</rom>
|
|
<rom name="numlock">
|
|
<inline> <numlock enabled="no"/> </inline>
|
|
<sleep milliseconds="500" />
|
|
<inline> <numlock enabled="yes"/> </inline>
|
|
<sleep milliseconds="500" />
|
|
</rom>
|
|
<rom name="scrlock">
|
|
<inline> <scrlock enabled="no"/> </inline>
|
|
<sleep milliseconds="1000" />
|
|
<inline> <scrlock enabled="yes"/> </inline>
|
|
<sleep milliseconds="1000" />
|
|
</rom>
|
|
</config>
|
|
<route>
|
|
<service name="ROM"> <parent/> </service>
|
|
<service name="CPU"> <parent/> </service>
|
|
<service name="PD"> <parent/> </service>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="test-input">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<route>
|
|
<service name="ROM"> <parent/> </service>
|
|
<service name="CPU"> <parent/> </service>
|
|
<service name="PD"> <parent/> </service>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
<service name="Input"> <child name="input_drv"/> </service>
|
|
</route>
|
|
</start>}
|
|
|
|
append config {
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init
|
|
timer dynamic_rom
|
|
test-input
|
|
}
|
|
|
|
# platform-specific modules
|
|
append_platform_drv_boot_modules
|
|
|
|
lappend_if [have_spec ps2] boot_modules ps2_drv
|
|
lappend_if [have_spec sdl] boot_modules fb_sdl
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
run_genode_until forever
|