2013-08-21 09:37:21 +00:00
|
|
|
set build_components {
|
2014-04-14 09:57:22 +00:00
|
|
|
core init virtualbox
|
2013-08-21 09:37:21 +00:00
|
|
|
drivers/input
|
|
|
|
drivers/framebuffer
|
|
|
|
drivers/timer
|
|
|
|
}
|
|
|
|
|
|
|
|
lappend_if [have_spec acpi] build_components drivers/acpi
|
|
|
|
lappend_if [have_spec pci] build_components drivers/pci
|
2014-05-23 07:26:57 +00:00
|
|
|
lappend_if [have_spec x86] build_components drivers/rtc
|
2013-08-21 09:37:21 +00:00
|
|
|
|
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
set config {
|
|
|
|
<config>
|
|
|
|
<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>
|
2014-05-23 07:26:57 +00:00
|
|
|
<any-service> <any-child/> <parent/> </any-service>
|
2013-08-21 09:37:21 +00:00
|
|
|
</default-route>
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [have_spec acpi] config {
|
|
|
|
<start name="acpi">
|
|
|
|
<resource name="RAM" quantum="5M"/>
|
|
|
|
<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>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
|
|
|
<start name="pci_drv">
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
|
|
|
<provides> <service name="PCI"/> </provides>
|
2014-05-23 07:26:57 +00:00
|
|
|
</start>}
|
2013-08-21 09:37:21 +00:00
|
|
|
|
|
|
|
append_if [have_spec ps2] config {
|
|
|
|
<start name="ps2_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Input"/></provides>
|
2014-05-23 07:26:57 +00:00
|
|
|
</start>}
|
2013-08-21 09:37:21 +00:00
|
|
|
|
|
|
|
append_if [have_spec framebuffer] config {
|
|
|
|
<start name="fb_drv">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="Framebuffer"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [have_spec sdl] config {
|
|
|
|
<start name="fb_sdl">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides>
|
|
|
|
<service name="Input"/>
|
|
|
|
<service name="Framebuffer"/>
|
|
|
|
</provides>
|
|
|
|
</start>}
|
|
|
|
|
2014-05-23 07:26:57 +00:00
|
|
|
append_if [have_spec x86] config {
|
|
|
|
<start name="rtc_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides>
|
|
|
|
<service name="Rtc"/>
|
|
|
|
</provides>
|
|
|
|
</start>}
|
|
|
|
|
2013-08-21 09:37:21 +00:00
|
|
|
append config {
|
|
|
|
<start name="virtualbox">
|
|
|
|
<resource name="RAM" quantum="1G"/>
|
|
|
|
<config>
|
2014-04-14 09:57:22 +00:00
|
|
|
<image type="iso" file="test.iso" />
|
2014-06-17 19:34:42 +00:00
|
|
|
<!-- <ioapic/> -->
|
2014-04-14 09:57:22 +00:00
|
|
|
<libc stdout="/dev/log" stderr="/dev/log">
|
|
|
|
<vfs>
|
|
|
|
<dir name="dev"> <log/> </dir>
|
|
|
|
<rom name="test.iso" />
|
|
|
|
</vfs>
|
|
|
|
</libc>
|
2013-08-21 09:37:21 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
2014-04-14 09:57:22 +00:00
|
|
|
set boot_modules { core init timer virtualbox test.iso }
|
2013-08-21 09:37:21 +00:00
|
|
|
|
|
|
|
# platform-specific modules
|
|
|
|
lappend_if [have_spec ps2] boot_modules ps2_drv
|
|
|
|
lappend_if [have_spec acpi] boot_modules acpi_drv
|
|
|
|
lappend_if [have_spec pci] boot_modules pci_drv
|
|
|
|
lappend_if [have_spec framebuffer] boot_modules fb_drv
|
|
|
|
lappend_if [have_spec linux] boot_modules fb_sdl
|
|
|
|
lappend_if [have_spec nova] boot_modules pci_device_pd
|
2014-05-23 07:26:57 +00:00
|
|
|
lappend_if [have_spec x86] boot_modules rtc_drv
|
|
|
|
|
|
|
|
append boot_modules { ld.lib.so libc.lib.so libm.lib.so pthread.lib.so
|
|
|
|
libc_lock_pipe.lib.so libc_terminal.lib.so
|
|
|
|
libiconv.lib.so }
|
2013-08-21 09:37:21 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
append qemu_args " -m 512 "
|
|
|
|
append qemu_args " -cpu phenom "
|
|
|
|
|
|
|
|
run_genode_until forever
|