2018-07-04 15:13:16 +00:00
|
|
|
#
|
|
|
|
# Configure wireless lan
|
|
|
|
#
|
|
|
|
|
|
|
|
proc wifi_ssid { } {
|
|
|
|
return $::env(GENODE_WIFI_SSID)
|
|
|
|
}
|
|
|
|
|
|
|
|
proc wifi_psk { } {
|
|
|
|
return $::env(GENODE_WIFI_PSK)
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Restrict platforms
|
|
|
|
#
|
|
|
|
assert_spec x86
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
|
|
|
set build_components {
|
|
|
|
core init
|
|
|
|
drivers/rtc
|
2018-07-04 15:13:16 +00:00
|
|
|
drivers/timer
|
|
|
|
drivers/wifi
|
2015-03-10 13:45:22 +00:00
|
|
|
server/report_rom
|
2016-10-20 08:17:32 +00:00
|
|
|
server/dynamic_rom
|
2014-11-22 14:13:43 +00:00
|
|
|
test/lwip/http_srv
|
2015-08-17 13:14:48 +00:00
|
|
|
lib/vfs/jitterentropy
|
2018-07-04 15:13:16 +00:00
|
|
|
lib/vfs/lwip
|
2014-11-22 14:13:43 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
2018-07-04 15:13:16 +00:00
|
|
|
append config {
|
2014-11-22 14:13:43 +00:00
|
|
|
<config verbose="yes">
|
|
|
|
<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>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2014-11-22 14:13:43 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
2018-07-04 15:13:16 +00:00
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
<start name="rtc_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Rtc"/> </provides>
|
|
|
|
</start>
|
2018-07-04 15:13:16 +00:00
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
<start name="test-lwip_httpsrv">
|
2018-07-04 15:13:16 +00:00
|
|
|
<resource name="RAM" quantum="16M"/>
|
2014-11-22 14:13:43 +00:00
|
|
|
<config>
|
2018-07-04 15:13:16 +00:00
|
|
|
<libc stdout="/dev/null" stderr="/dev/log" socket="/socket"/>
|
|
|
|
<vfs>
|
|
|
|
<dir name="dev"> <log/> <null/> </dir>
|
|
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
|
|
</vfs>
|
2014-11-22 14:13:43 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
2018-07-04 15:13:16 +00:00
|
|
|
|
2018-09-13 13:13:23 +00:00
|
|
|
<start name="scan_report_rom">
|
|
|
|
<binary name="report_rom"/>
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
|
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
|
|
|
<config verbose="no"/>
|
|
|
|
</start>
|
|
|
|
|
|
|
|
<start name="accesspoints_report_rom">
|
|
|
|
<binary name="report_rom"/>
|
2015-03-10 13:45:22 +00:00
|
|
|
<resource name="RAM" quantum="2M"/>
|
2016-10-20 08:17:32 +00:00
|
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
2018-07-04 15:13:16 +00:00
|
|
|
<config verbose="no"/>
|
2015-03-10 13:45:22 +00:00
|
|
|
</start>
|
2018-07-04 15:13:16 +00:00
|
|
|
|
2016-10-20 08:17:32 +00:00
|
|
|
<start name="config_rom">
|
|
|
|
<binary name="dynamic_rom"/>
|
2015-03-10 13:45:22 +00:00
|
|
|
<resource name="RAM" quantum="4M"/>
|
2016-10-20 08:17:32 +00:00
|
|
|
<provides><service name="ROM"/></provides>
|
|
|
|
<config verbose="yes">
|
2018-07-04 15:13:16 +00:00
|
|
|
<rom name="wifi_config">
|
2018-09-13 13:13:23 +00:00
|
|
|
<inline description="disconnect">
|
|
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="no" verbose_state="no"/>
|
|
|
|
</inline>
|
|
|
|
<sleep milliseconds="15000"/>
|
2018-07-04 15:13:16 +00:00
|
|
|
<inline description="connect">
|
2018-09-13 13:13:23 +00:00
|
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="no" verbose_state="no">
|
|
|
|
<network ssid="} [wifi_ssid] {" protection="WPA2" explicit_scan="true" passphrase="} [wifi_psk] {"/>
|
2018-07-04 15:13:16 +00:00
|
|
|
</wifi_config>
|
2015-03-10 13:45:22 +00:00
|
|
|
</inline>
|
2018-07-04 15:13:16 +00:00
|
|
|
<sleep milliseconds="60000"/>
|
|
|
|
<inline description="rfkill block">
|
2018-09-13 13:13:23 +00:00
|
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="yes" verbose="no" verbose_state="no">
|
|
|
|
<network ssid="} [wifi_ssid] {" protection="WPA2" explicit_scan="true" passphrase="} [wifi_psk] {"/>
|
2018-07-04 15:13:16 +00:00
|
|
|
</wifi_config>
|
|
|
|
</inline>
|
|
|
|
<sleep milliseconds="30000"/>
|
|
|
|
<inline description="rfkill unblock">
|
2018-09-13 13:13:23 +00:00
|
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="no" verbose_state="no">
|
|
|
|
<network ssid="} [wifi_ssid] {" protection="WPA2" explicit_scan="true" passphrase="} [wifi_psk] {"/>
|
2018-07-04 15:13:16 +00:00
|
|
|
</wifi_config>
|
|
|
|
</inline>
|
|
|
|
<sleep milliseconds="30000"/>
|
2016-10-20 08:17:32 +00:00
|
|
|
</rom>
|
2015-03-10 13:45:22 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
2018-07-04 15:13:16 +00:00
|
|
|
|
|
|
|
<start name="wifi_drv" caps="200">
|
|
|
|
<resource name="RAM" quantum="24M"/>
|
2015-03-10 13:45:22 +00:00
|
|
|
<provides> <service name="Nic"/> </provides>
|
2018-07-04 15:13:16 +00:00
|
|
|
<config ld_verbose="yes">
|
|
|
|
<libc stdout="/dev/null" stderr="/dev/null" rtc="/dev/rtc"/>
|
2018-04-23 13:45:47 +00:00
|
|
|
<vfs>
|
2018-07-04 15:13:16 +00:00
|
|
|
<dir name="dev"> <log/> <null/> <rtc/>
|
2018-04-23 13:45:47 +00:00
|
|
|
<jitterentropy name="random"/>
|
|
|
|
<jitterentropy name="urandom"/>
|
|
|
|
</dir>
|
|
|
|
</vfs>
|
2014-11-22 14:13:43 +00:00
|
|
|
</config>
|
|
|
|
<route>
|
2016-10-20 08:17:32 +00:00
|
|
|
<service name="Rtc"> <any-child/> </service>
|
2018-09-13 13:13:23 +00:00
|
|
|
<service name="Report" label="accesspoints"> <child name="accesspoints_report_rom"/> </service>
|
|
|
|
<service name="Report" label="state"> <child name="scan_report_rom"/> </service>
|
2018-07-04 15:13:16 +00:00
|
|
|
<service name="ROM" label="wifi_config"> <child name="config_rom"/> </service>
|
2016-10-20 08:17:32 +00:00
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
2014-11-22 14:13:43 +00:00
|
|
|
</route>
|
|
|
|
</start>}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_config
|
2014-11-22 14:13:43 +00:00
|
|
|
|
|
|
|
append config {
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
2014-12-17 11:02:39 +00:00
|
|
|
set firmware_modules {
|
2016-02-29 14:26:19 +00:00
|
|
|
iwlwifi-6000-4.ucode
|
2014-12-17 11:02:39 +00:00
|
|
|
iwlwifi-6000g2a-6.ucode
|
|
|
|
iwlwifi-6000g2b-6.ucode
|
2018-04-23 13:45:47 +00:00
|
|
|
iwlwifi-7260-17.ucode
|
|
|
|
iwlwifi-7265-17.ucode
|
|
|
|
iwlwifi-7265D-29.ucode
|
|
|
|
iwlwifi-8000C-36.ucode
|
|
|
|
iwlwifi-8265-36.ucode
|
|
|
|
regulatory.db
|
2014-12-17 11:02:39 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2016-12-01 18:00:11 +00:00
|
|
|
core ld.lib.so init timer rtc_drv report_rom dynamic_rom
|
2018-07-04 15:13:16 +00:00
|
|
|
vfs_jitterentropy.lib.so
|
|
|
|
libc.lib.so vfs.lib.so libcrypto.lib.so libssl.lib.so
|
2014-11-22 14:13:43 +00:00
|
|
|
wpa_driver_nl80211.lib.so wpa_supplicant.lib.so
|
|
|
|
wifi.lib.so
|
|
|
|
wifi_drv
|
|
|
|
|
2018-07-04 15:13:16 +00:00
|
|
|
test-lwip_httpsrv
|
|
|
|
vfs_lwip.lib.so
|
2014-11-22 14:13:43 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 11:02:39 +00:00
|
|
|
append boot_modules $firmware_modules
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_boot_modules
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
run_genode_until forever
|
2014-12-17 11:02:39 +00:00
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
# vi: set ft=tcl :
|