genode/repos/libports/run/extract.run
Norman Feske 3ebb715c5c libports: use [build_artifacts] in run scripts
...except for the run scripts related to Qt and the NIC router.

Issue #4860
2023-09-29 12:17:45 +02:00

52 lines
1.4 KiB
Plaintext

create_boot_directory
if {[get_cmd_switch --autopilot] && [have_board virt_qemu_riscv]} {
puts "Autopilot mode is not supported on this platform."
exit 0
}
import_from_depot [depot_user]/src/[base_src] \
[depot_user]/src/init
install_config {
<config>
<parent-provides>
<service name="CPU"/>
<service name="LOG"/>
<service name="PD"/>
<service name="ROM"/>
</parent-provides>
<default-route> <any-service> <parent/> </any-service> </default-route>
<start name="extract" caps="200">
<resource name="RAM" quantum="12M"/>
<config verbose="yes">
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/null"
update_mtime="no"/>
<vfs>
<dir name="archived">
<rom name="test.tar.xz"/>
<rom name="LICENSE.xz"/>
</dir>
<dir name="extracted"> <ram/> </dir>
<dir name="dev"> <log/> <null/> </dir>
</vfs>
<extract archive="/archived/test.tar.xz" to="/extracted"/>
<extract archive="/archived/LICENSE.xz" to="/extracted" name="LICENSE"/>
</config>
</start>
</config>
}
exec tar cJf [run_dir]/genode/test.tar.xz -C [genode_dir] tool/depot
exec xz < [genode_dir]/LICENSE > [run_dir]/genode/LICENSE.xz
build { app/extract lib/libc lib/vfs lib/libarchive lib/liblzma lib/zlib }
build_boot_image [build_artifacts]
append qemu_args " -nographic "
run_genode_until {child "extract" exited with exit value 0} 30