mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-01 11:36:43 +00:00
ec9e8ecfaa
* TODO
188 lines
4.3 KiB
Tcl
188 lines
4.3 KiB
Tcl
#
|
|
# Configure wireless lan
|
|
#
|
|
|
|
proc wifi_ssid { } {
|
|
return $::env(GENODE_WIFI_SSID)
|
|
}
|
|
|
|
proc wifi_psk { } {
|
|
return $::env(GENODE_WIFI_PSK)
|
|
}
|
|
|
|
#
|
|
# Restrict platforms
|
|
#
|
|
assert_spec x86
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
set build_components {
|
|
core init
|
|
drivers/rtc
|
|
drivers/timer
|
|
drivers/wifi
|
|
server/report_rom
|
|
server/dynamic_rom
|
|
test/lwip/http_srv
|
|
lib/vfs/jitterentropy
|
|
lib/vfs/lwip
|
|
}
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<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>
|
|
<default caps="100"/>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides> <service name="Timer"/> </provides>
|
|
</start>
|
|
|
|
<start name="rtc_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides> <service name="Rtc"/> </provides>
|
|
</start>
|
|
|
|
<start name="test-lwip_httpsrv">
|
|
<resource name="RAM" quantum="16M"/>
|
|
<config>
|
|
<libc stdout="/dev/null" stderr="/dev/log" socket="/socket"/>
|
|
<vfs>
|
|
<dir name="dev"> <log/> <null/> </dir>
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
</vfs>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="report_rom">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
|
<config verbose="no"/>
|
|
</start>
|
|
|
|
<start name="config_rom">
|
|
<binary name="dynamic_rom"/>
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides><service name="ROM"/></provides>
|
|
<config verbose="yes">
|
|
<rom name="wifi_config">
|
|
<inline description="connect">
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="yes">
|
|
<accesspoint ssid="} [wifi_ssid] {" protection="WPA2" passphrase="} [wifi_psk] {"/>
|
|
</wifi_config>
|
|
</inline>
|
|
<sleep milliseconds="60000"/>
|
|
<inline description="rfkill block">
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="yes" verbose="yes">
|
|
<accesspoint ssid="} [wifi_ssid] {" protection="WPA2" passphrase="} [wifi_psk] {"/>
|
|
</wifi_config>
|
|
</inline>
|
|
<sleep milliseconds="30000"/>
|
|
<inline description="rfkill unblock">
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="yes">
|
|
<accesspoint ssid="} [wifi_ssid] {" protection="WPA2" passphrase="} [wifi_psk] {"/>
|
|
</wifi_config>
|
|
</inline>
|
|
<sleep milliseconds="30000"/>
|
|
<inline description="disconnect">
|
|
<wifi_config connected_scan_interval="30" scan_interval="5" rfkill="no" verbose="yes">
|
|
<accesspoint ssid="} [wifi_ssid] {" protection="WPA2" passphrase="} [wifi_psk] {"/>
|
|
</wifi_config>
|
|
</inline>
|
|
<sleep milliseconds="60000"/>
|
|
</rom>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="wifi_drv" caps="200">
|
|
<resource name="RAM" quantum="24M"/>
|
|
<provides> <service name="Nic"/> </provides>
|
|
<config ld_verbose="yes">
|
|
<libc stdout="/dev/null" stderr="/dev/null" rtc="/dev/rtc"/>
|
|
<vfs>
|
|
<dir name="dev"> <log/> <null/> <rtc/>
|
|
<jitterentropy name="random"/>
|
|
<jitterentropy name="urandom"/>
|
|
</dir>
|
|
</vfs>
|
|
</config>
|
|
<route>
|
|
<service name="Rtc"> <any-child/> </service>
|
|
<service name="Report"> <child name="report_rom"/> </service>
|
|
<service name="ROM" label="wifi_config"> <child name="config_rom"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append config {
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
set firmware_modules {
|
|
iwlwifi-6000-4.ucode
|
|
iwlwifi-6000g2a-6.ucode
|
|
iwlwifi-6000g2b-6.ucode
|
|
iwlwifi-7260-17.ucode
|
|
iwlwifi-7265-17.ucode
|
|
iwlwifi-7265D-29.ucode
|
|
iwlwifi-8000C-36.ucode
|
|
iwlwifi-8265-36.ucode
|
|
regulatory.db
|
|
}
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init timer rtc_drv report_rom dynamic_rom
|
|
vfs_jitterentropy.lib.so
|
|
libc.lib.so vfs.lib.so libcrypto.lib.so libssl.lib.so
|
|
wpa_driver_nl80211.lib.so wpa_supplicant.lib.so
|
|
wifi.lib.so
|
|
wifi_drv
|
|
|
|
test-lwip_httpsrv
|
|
vfs_lwip.lib.so
|
|
}
|
|
|
|
append boot_modules $firmware_modules
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until forever
|
|
|
|
# vi: set ft=tcl :
|