# # Build # set build_components { core init test/framebuffer drivers/framebuffer drivers/timer } lappend_if [have_spec pci] build_components drivers/pci lappend_if [have_spec acpi] build_components drivers/acpi lappend_if [have_spec exynos5] build_components drivers/platform build $build_components create_boot_directory # # Generate config # append config { } append_if [have_spec sdl] config { } append_if [have_spec acpi] config { } append_if [expr ![have_spec acpi] && [have_spec pci]] config { } append_if [have_spec framebuffer] config { } append_if [have_spec exynos5] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer test-framebuffer } # platform-specific modules lappend_if [have_spec sdl] boot_modules fb_sdl lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec nova] boot_modules pci_device_pd lappend_if [have_spec acpi] boot_modules acpi_drv lappend_if [have_spec framebuffer] boot_modules fb_drv lappend_if [have_spec exynos5] boot_modules platform_drv build_boot_image $boot_modules run_genode_until forever