2017-12-05 14:56:38 +00:00
|
|
|
#
|
|
|
|
# \brief Test of 'fetchurl
|
|
|
|
# \author Emery Hemingway
|
|
|
|
# \date 2016-06-05
|
|
|
|
#
|
|
|
|
|
|
|
|
set build_components {
|
|
|
|
app/fetchurl
|
2018-02-15 11:01:30 +00:00
|
|
|
core init
|
2017-12-05 14:56:38 +00:00
|
|
|
drivers/nic
|
|
|
|
drivers/timer
|
2018-02-15 11:01:30 +00:00
|
|
|
lib/vfs/lxip
|
2017-12-05 14:56:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
|
|
|
|
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
append config {
|
2018-02-15 11:01:30 +00:00
|
|
|
<config>
|
2017-12-05 14:56:38 +00:00
|
|
|
<parent-provides>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="ROM"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default caps="100"/>
|
|
|
|
<default-route>
|
2018-03-02 11:08:48 +00:00
|
|
|
<service name="Report"> <child name="report_rom"/> </service>
|
2017-12-05 14:56:38 +00:00
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>}
|
|
|
|
|
|
|
|
append_platform_drv_config
|
|
|
|
|
|
|
|
append config {
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="nic_drv">
|
2018-01-12 10:34:15 +00:00
|
|
|
<binary name="} [nic_drv_binary] {"/>
|
2017-12-05 14:56:38 +00:00
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides> <service name="Nic"/> </provides>
|
|
|
|
</start>
|
2018-03-02 11:08:48 +00:00
|
|
|
<start name="report_rom">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides> <service name="Report"/> </provides>
|
|
|
|
<config verbose="yes"/>
|
|
|
|
</start>
|
|
|
|
|
2017-12-05 14:56:38 +00:00
|
|
|
<start name="fetchurl" caps="500">
|
2018-02-15 11:01:30 +00:00
|
|
|
<resource name="RAM" quantum="32M"/>
|
2017-12-05 14:56:38 +00:00
|
|
|
<config>
|
2018-03-02 11:08:48 +00:00
|
|
|
<report progress="yes"/>
|
2017-12-20 14:56:08 +00:00
|
|
|
<vfs>
|
2018-02-15 11:01:30 +00:00
|
|
|
<dir name="etc">
|
|
|
|
<inline name="resolv.conf">nameserver 213.73.91.35</inline>
|
|
|
|
</dir>
|
2017-12-20 14:56:08 +00:00
|
|
|
<dir name="dev">
|
|
|
|
<log/> <null/> <inline name="rtc">2000-01-01 00:00</inline>
|
2018-02-27 09:36:17 +00:00
|
|
|
<inline name="random">01234567890123456789</inline>
|
2017-12-20 14:56:08 +00:00
|
|
|
</dir>
|
2018-02-15 11:01:30 +00:00
|
|
|
<dir name="socket"> <lxip dhcp="yes"/> </dir>
|
2017-12-20 14:56:08 +00:00
|
|
|
</vfs>
|
2018-02-15 11:01:30 +00:00
|
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc" socket="/socket"/>
|
2017-12-05 14:56:38 +00:00
|
|
|
<fetch url="http://genode.org/about/LICENSE" path="/dev/log"/>
|
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
|
|
|
core init ld.lib.so
|
|
|
|
curl.lib.so
|
|
|
|
fetchurl
|
|
|
|
libc.lib.so
|
|
|
|
libcrypto.lib.so
|
|
|
|
libssh.lib.so
|
|
|
|
libssl.lib.so
|
2018-02-15 11:01:30 +00:00
|
|
|
lxip.lib.so
|
2017-12-05 14:56:38 +00:00
|
|
|
nic_drv
|
2018-02-15 11:01:30 +00:00
|
|
|
pthread.lib.so
|
2017-12-05 14:56:38 +00:00
|
|
|
timer
|
2018-02-15 11:01:30 +00:00
|
|
|
vfs_lxip.lib.so
|
2017-12-05 14:56:38 +00:00
|
|
|
zlib.lib.so
|
|
|
|
}
|
|
|
|
|
|
|
|
# platform-specific modules
|
|
|
|
append_platform_drv_boot_modules
|
2018-01-12 10:34:15 +00:00
|
|
|
lappend boot_modules [nic_drv_binary]
|
2017-12-05 14:56:38 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
append qemu_args " -nographic -net nic,model=e1000 -net user"
|
|
|
|
|
|
|
|
run_genode_until {child "fetchurl" exited with exit value 0} 120
|