From fec1765cc40e02cf6549d3906a453ead41284b1a Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Wed, 11 Oct 2023 16:33:29 +0200 Subject: [PATCH] pc: run script for pc_nic_drv Issue #5036 --- repos/pc/run/pc_nic.run | 122 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 repos/pc/run/pc_nic.run diff --git a/repos/pc/run/pc_nic.run b/repos/pc/run/pc_nic.run new file mode 100644 index 0000000000..036f47b213 --- /dev/null +++ b/repos/pc/run/pc_nic.run @@ -0,0 +1,122 @@ +assert_spec x86 + +set build_components { + drivers/nic/pc +} + +build $build_components + +create_boot_directory + +import_from_depot \ + [depot_user]/src/[base_src] \ + [depot_user]/src/report_rom \ + [depot_user]/src/init \ + [depot_user]/src/acpi_drv \ + [depot_user]/src/pci_decode \ + [depot_user]/src/platform_drv \ + [depot_user]/src/nic_router \ + [depot_user]/src/pc_nic_drv + +append config { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +} + +install_config $config + +build_boot_image [build_artifacts] + +append qemu_args " -nographic " + +run_genode_until forever + +# vi: set ft=tcl :