From 608df3840299a731d4cd146b32cb04b2821d7a72 Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Wed, 18 May 2016 11:57:42 +0200 Subject: [PATCH] hw: add dummy config to kernel tests Building a kernel test produced an error about a missing config apparently because of recent changes in the run tool. So, we add a dummy XML node as config. Ref #1972 --- repos/base-hw/run/cpu_scheduler.run | 3 +++ repos/base-hw/run/double_list.run | 3 +++ repos/base-hw/run/hw_info.run | 3 +++ 3 files changed, 9 insertions(+) diff --git a/repos/base-hw/run/cpu_scheduler.run b/repos/base-hw/run/cpu_scheduler.run index acb3298eb..b51a9046c 100644 --- a/repos/base-hw/run/cpu_scheduler.run +++ b/repos/base-hw/run/cpu_scheduler.run @@ -10,6 +10,9 @@ build "test/cpu_scheduler" # create directory where the boot files are written to create_boot_directory +# the init config is not used but the build system needs it +install_config {} + # create single boot image from the compiled program images set core_test 1 build_boot_image "test-cpu_scheduler" diff --git a/repos/base-hw/run/double_list.run b/repos/base-hw/run/double_list.run index e45a0d039..0e4324357 100644 --- a/repos/base-hw/run/double_list.run +++ b/repos/base-hw/run/double_list.run @@ -10,6 +10,9 @@ build "test/double_list" # create directory where the boot files are written to create_boot_directory +# the init config is not used but the build system needs it +install_config {} + # create single boot image from the compiled program images set core_test 1 build_boot_image "test-double_list" diff --git a/repos/base-hw/run/hw_info.run b/repos/base-hw/run/hw_info.run index 2c860f93b..d20ef27ef 100644 --- a/repos/base-hw/run/hw_info.run +++ b/repos/base-hw/run/hw_info.run @@ -10,6 +10,9 @@ build "test/hw_info" # create directory where the boot files are written to create_boot_directory +# the init config is not used but the build system needs it +install_config {} + # create single boot image from the compiled program images set core_test 1 build_boot_image "test-hw_info"