From dab7c647622cc59588ef99a55228c5222febb18a Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Thu, 4 May 2023 17:13:52 +0200 Subject: [PATCH] os: remove obsolete input.run script Since repos/base/board/pc/devices is empty, the run script no longer works on PC. Nobody noticed because the use case of this run script - as development test loop for the ps2 and fb_sdl - are better served by other scenarios nowadays, e.g., using declaring 'build: ps2' for a custom Sculpt OS build. Removed in the context of issue #4860. --- repos/os/run/input.run | 177 ----------------------------------------- 1 file changed, 177 deletions(-) delete mode 100644 repos/os/run/input.run diff --git a/repos/os/run/input.run b/repos/os/run/input.run deleted file mode 100644 index ae2cd0fe8f..0000000000 --- a/repos/os/run/input.run +++ /dev/null @@ -1,177 +0,0 @@ -# -# Build -# - -assert_spec x86 - -set build_components { core init timer server/dynamic_rom server/event_dump } - -lappend_if [have_board pc] build_components drivers/platform -lappend_if [have_board pc] build_components drivers/ps2 -lappend_if [have_board linux] build_components drivers/framebuffer/sdl -lappend_if [have_board linux] build_components server/nitpicker - -build $build_components - -create_boot_directory - -# -# Generate config -# - -append config { - - - - - - - - - - - - - - - - - - - - - - - - - - - } - -append_if [have_board pc] config { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } - -append_if [have_board linux] config { - - - - - - - - - - - - - - - - - - - - } - -append config { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } - -append config { -} - -install_config $config - -# -# Boot modules -# - -# generic modules -file copy [select_from_repositories board/[board]/devices] [run_dir]/genode/devices -set boot_modules { core ld.lib.so init timer dynamic_rom event_dump } - -lappend_if [have_board pc] boot_modules ps2_drv -lappend_if [have_board pc] boot_modules platform_drv -lappend_if [have_board linux] boot_modules fb_sdl -lappend_if [have_board linux] boot_modules nitpicker - -build_boot_image $boot_modules - -run_genode_until forever