diff --git a/repos/os/run/gpio_led.run b/repos/os/run/gpio_led.run deleted file mode 100644 index 74d42df84a..0000000000 --- a/repos/os/run/gpio_led.run +++ /dev/null @@ -1,74 +0,0 @@ -# -# Build -# -if {![have_board rpi]} { - 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 { - - - - - - - - - - - -} - -install_config $config - -# -# Boot modules -# - -# generic modules -set boot_modules { - core ld.lib.so init - timer - led_gpio_drv - rpi_gpio_drv -} - -build_boot_image $boot_modules - -run_genode_until forever diff --git a/repos/os/run/gpio_signal.run b/repos/os/run/gpio_signal.run deleted file mode 100644 index ae2035d113..0000000000 --- a/repos/os/run/gpio_signal.run +++ /dev/null @@ -1,79 +0,0 @@ -# -# Build -# -if {![have_board rpi]} { - puts "Runs only on platforms with GPIO" - exit 0 -} - -set build_components { - core init timer - drivers/gpio - test/gpio_signal -} - -build $build_components - -create_boot_directory - -# -# Generate config -# Example preconfigured for RaspberryPI ACT Led -# - -append config { - - - - - - - - - - - - - - - - - - } - - -append config { - - - - - - - - - - - - - - -} - -install_config $config - -# -# Boot modules -# - -# generic modules -set boot_modules { - core ld.lib.so init - timer - signal_gpio_drv -} - -append boot_modules rpi_gpio_drv - -build_boot_image $boot_modules - -run_genode_until forever