# # Build # if {[have_spec gpio] == 0} { puts "Runs only on platforms with GPIO" exit 0 } set build_components { core init timer drivers/gpio test/gpio_led } build $build_components create_boot_directory # # Generate config # Example preconfigured for RaspberryPI ACT Led # append config { } append config " " append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core ld.lib.so init timer led_gpio_drv } append boot_modules [gpio_drv] build_boot_image $boot_modules run_genode_until forever