2014-11-22 14:13:43 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
|
|
|
set build_components {
|
|
|
|
core init
|
|
|
|
drivers/pci drivers/timer drivers/wifi
|
|
|
|
drivers/rtc
|
2015-03-10 13:45:22 +00:00
|
|
|
server/report_rom
|
|
|
|
server/ram_fs
|
|
|
|
server/fs_rom
|
2014-11-22 14:13:43 +00:00
|
|
|
test/lwip/http_srv
|
|
|
|
}
|
|
|
|
|
|
|
|
lappend_if [have_spec acpi] build_components drivers/acpi
|
|
|
|
lappend_if [have_spec pci] build_components drivers/pci/device_pd
|
|
|
|
lappend_if [have_spec platform_arndale] build_components drivers/platform
|
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
|
|
|
|
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
set config {
|
|
|
|
<config verbose="yes">
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="CAP"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="SIGNAL"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
|
|
|
<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="5M"/>
|
|
|
|
<config>
|
|
|
|
<libc stdout="/dev/log" stderr="/dev/log">
|
|
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
|
|
</libc>
|
|
|
|
</config>
|
|
|
|
</start>
|
2015-03-10 13:45:22 +00:00
|
|
|
<start name="report_rom">
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
|
|
|
<provides> <service name="Report" /> <service name="ROM" /> </provides>
|
|
|
|
<config> <rom/> </config>
|
|
|
|
</start>
|
|
|
|
<start name="config_fs">
|
|
|
|
<binary name="ram_fs"/>
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides> <service name="File_system"/> </provides>
|
|
|
|
<config>
|
|
|
|
<policy label="config_rom" root="/"/>
|
|
|
|
<policy label="wifi_drv -> config" root="/" writeable="yes"/>
|
|
|
|
<content>
|
|
|
|
<inline name="wlan_configuration">
|
|
|
|
<selected_network ssid="foobar" protection="WPA-PSK" psk="foobarfoobar"/>
|
|
|
|
</inline>
|
|
|
|
<inline name="wpa_supplicant.conf"></inline>
|
|
|
|
</content>
|
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="config_rom">
|
|
|
|
<binary name="fs_rom"/>
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="ROM"/></provides>
|
|
|
|
<route>
|
|
|
|
<service name="File_system"> <child name="config_fs" /> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
2014-11-22 14:13:43 +00:00
|
|
|
<start name="wifi_drv">
|
|
|
|
<resource name="RAM" quantum="32M"/>
|
2015-03-10 13:45:22 +00:00
|
|
|
<provides> <service name="Nic"/> </provides>
|
|
|
|
<config verbose="yes">
|
2014-11-22 14:13:43 +00:00
|
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc">
|
|
|
|
<vfs>
|
|
|
|
<dir name="dev"> <log/> <rtc/>
|
2015-03-10 13:45:22 +00:00
|
|
|
<jitterentropy name="random"/>
|
|
|
|
<jitterentropy name="urandom"/>
|
2014-11-22 14:13:43 +00:00
|
|
|
</dir>
|
2015-03-10 13:45:22 +00:00
|
|
|
<dir name="config"> <fs label="config"/> </dir>
|
2014-11-22 14:13:43 +00:00
|
|
|
</vfs>
|
|
|
|
</libc>
|
|
|
|
</config>
|
|
|
|
<route>
|
|
|
|
<service name="Rtc"> <any-child /> </service>
|
2015-03-10 13:45:22 +00:00
|
|
|
<service name="File_system"> <child name="config_fs"/> </service>
|
|
|
|
<service name="ROM"> <if-arg key="label" value="wlan_configuration" /> <child name="config_rom" /> </service>
|
2014-11-22 14:13:43 +00:00
|
|
|
<any-service> <parent/> <any-child /> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [have_spec acpi] config {
|
|
|
|
<start name="acpi">
|
2015-02-09 13:57:04 +00:00
|
|
|
<resource name="RAM" quantum="16M" constrain_phys="yes"/>
|
2014-11-22 14:13:43 +00:00
|
|
|
<binary name="acpi_drv"/>
|
|
|
|
<provides>
|
|
|
|
<service name="PCI"/>
|
|
|
|
<service name="IRQ" />
|
|
|
|
</provides>
|
|
|
|
<route>
|
|
|
|
<service name="PCI"> <any-child /> </service>
|
|
|
|
<any-service> <parent/> <any-child /> </any-service>
|
|
|
|
</route>
|
2015-04-24 14:10:04 +00:00
|
|
|
<config>
|
|
|
|
<policy label="acpi_drv">
|
|
|
|
<pci class="ALL"/>
|
|
|
|
</policy>
|
|
|
|
<policy label="wifi_drv">
|
|
|
|
<pci class="WIFI"/>
|
|
|
|
</policy>
|
|
|
|
</config>
|
2014-11-22 14:13:43 +00:00
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [have_spec platform_arndale] config {
|
|
|
|
<start name="platform_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Regulator"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [have_spec gpio] config {
|
|
|
|
<start name="gpio_drv">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="Gpio"/></provides>
|
|
|
|
<config/>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
|
|
|
<start name="pci_drv">
|
2015-02-09 13:57:04 +00:00
|
|
|
<resource name="RAM" quantum="3M" constrain_phys="yes"/>
|
2014-11-22 14:13:43 +00:00
|
|
|
<provides> <service name="PCI"/> </provides>
|
|
|
|
</start> }
|
|
|
|
|
|
|
|
append config {
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
2014-12-17 11:02:39 +00:00
|
|
|
set firmware_modules {
|
|
|
|
iwlwifi-6000-6.ucode
|
|
|
|
iwlwifi-6000g2a-6.ucode
|
|
|
|
iwlwifi-6000g2b-6.ucode
|
|
|
|
iwlwifi-7260-8.ucode
|
|
|
|
}
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2015-03-10 13:45:22 +00:00
|
|
|
core init timer rtc_drv ram_fs report_rom fs_rom
|
|
|
|
vfs_jitterentropy.lib.so
|
2014-11-22 14:13:43 +00:00
|
|
|
ld.lib.so
|
|
|
|
libc.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 lwip.lib.so
|
|
|
|
}
|
|
|
|
|
2014-12-17 11:02:39 +00:00
|
|
|
append boot_modules $firmware_modules
|
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
lappend_if [have_spec acpi] boot_modules acpi_drv
|
|
|
|
lappend_if [have_spec pci] boot_modules pci_drv
|
|
|
|
lappend_if [have_spec nova] boot_modules pci_device_pd
|
|
|
|
lappend_if [have_spec platform_arndale] boot_modules platform_drv
|
|
|
|
lappend_if [have_spec gpio] boot_modules gpio_drv
|
|
|
|
|
|
|
|
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 :
|