genode/repos/base-nova/run/platform.run
Norman Feske 4b46abf813 base: rm first-class support for static binaries
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
2018-08-02 14:36:38 +02:00

47 lines
907 B
Plaintext

build "core init test/platform"
set check_pat 1
if {[have_include power_on/qemu]} {
set check_pat 0
}
if {[get_cmd_switch --autopilot] && [have_spec x86_32]} {
# Disable test for our outdated nighly test machine for 32bit
set check_pat 0
}
create_boot_directory
set config {
<config>
<parent-provides>
<service name="ROM"/>
<service name="CPU"/>
<service name="RM"/>
<service name="PD"/>
<service name="LOG"/>
</parent-provides>
<default-route>
<any-service> <parent/> </any-service>
</default-route>
<start name="test-platform" caps="12000" ld="no">
<resource name="RAM" quantum="128M"/>}
append config "
<config check_pat=\"$check_pat\"/\>"
append config {
</start>
</config>
}
install_config $config
build_boot_image "core ld.lib.so init test-platform"
append qemu_args "-nographic -smp 2"
run_genode_until {Test finished} 240
puts "\nTest succeeded"