diff --git a/repos/gems/recipes/pkg/drivers_managed-imx8q_evk/archives b/repos/gems/recipes/pkg/drivers_managed-imx8q_evk/archives index e27a335a96..31135649b7 100644 --- a/repos/gems/recipes/pkg/drivers_managed-imx8q_evk/archives +++ b/repos/gems/recipes/pkg/drivers_managed-imx8q_evk/archives @@ -1,5 +1,4 @@ _/raw/drivers_managed-imx8q_evk -_/src/dummy_rtc_drv _/src/event_filter _/src/imx8_fb_drv _/src/imx8q_evk_drivers diff --git a/repos/gems/recipes/pkg/sculpt-pc/archives b/repos/gems/recipes/pkg/sculpt-pc/archives index da133fafe5..08e9cfd0a3 100644 --- a/repos/gems/recipes/pkg/sculpt-pc/archives +++ b/repos/gems/recipes/pkg/sculpt-pc/archives @@ -1,7 +1,6 @@ _/pkg/drivers_managed-pc _/pkg/sculpt _/pkg/wifi -_/src/rtc_drv _/src/ipxe_nic_drv _/src/nvme_drv _/src/intel_gpu_drv diff --git a/repos/gems/recipes/raw/drivers_managed-imx8q_evk/drivers.config b/repos/gems/recipes/raw/drivers_managed-imx8q_evk/drivers.config index c0de6c64a2..40dd819871 100644 --- a/repos/gems/recipes/raw/drivers_managed-imx8q_evk/drivers.config +++ b/repos/gems/recipes/raw/drivers_managed-imx8q_evk/drivers.config @@ -31,9 +31,6 @@ - - - @@ -350,14 +347,4 @@ - - - - - - - - - diff --git a/repos/gems/recipes/raw/drivers_managed-pc/drivers.config b/repos/gems/recipes/raw/drivers_managed-pc/drivers.config index fc0cf1089c..4879acd9ad 100644 --- a/repos/gems/recipes/raw/drivers_managed-pc/drivers.config +++ b/repos/gems/recipes/raw/drivers_managed-pc/drivers.config @@ -32,9 +32,6 @@ - - - @@ -188,19 +185,6 @@ - - - - - - - - - - - - - diff --git a/repos/gems/run/sculpt.run b/repos/gems/run/sculpt.run index a21b4f481d..798fd47606 100644 --- a/repos/gems/run/sculpt.run +++ b/repos/gems/run/sculpt.run @@ -275,7 +275,6 @@ install_config { - @@ -470,7 +469,6 @@ install_config { - diff --git a/repos/gems/src/app/sculpt_manager/model/runtime_config.h b/repos/gems/src/app/sculpt_manager/model/runtime_config.h index 2ef936f607..e97cebd7c6 100644 --- a/repos/gems/src/app/sculpt_manager/model/runtime_config.h +++ b/repos/gems/src/app/sculpt_manager/model/runtime_config.h @@ -329,7 +329,7 @@ class Sculpt::Runtime_config _backdrop { _r, Type::GUI, "desktop background", "backdrop" }, _lockscreen{ _r, Type::GUI, "desktop lock screen", "lock_screen" }, _nitpicker { _r, Type::GUI, "system GUI server" }, - _gpu { _r, Type::GPU, "system GPU" }, + _gpu { _r, Type::GPU, "GPU" }, _lz_event { _r, Type::EVENT, "management GUI events", "leitzentrale" }, _event { _r, Type::EVENT, "system input events", "global" }, _lz_capture{ _r, Type::CAPTURE, "management GUI", "leitzentrale" }, @@ -349,7 +349,6 @@ class Sculpt::Runtime_config _io_mem { _r, Type::IO_MEM, "raw hardware access" }, _io_port { _r, Type::IO_PORT, "raw hardware access" }, _irq { _r, Type::IRQ, "raw hardware access" }, - _rtc { _r, Type::RTC, "hardware clock" }, _block { _r, Type::BLOCK, "direct block-device access" }, _usb { _r, Type::USB, "direct USB-device access" }, _pci_wifi { _r, Type::PLATFORM, "wifi hardware", "wifi" }, diff --git a/repos/gems/src/app/sculpt_manager/runtime/wifi_drv.cc b/repos/gems/src/app/sculpt_manager/runtime/wifi_drv.cc index 81d2a9542c..15c9f9e2aa 100644 --- a/repos/gems/src/app/sculpt_manager/runtime/wifi_drv.cc +++ b/repos/gems/src/app/sculpt_manager/runtime/wifi_drv.cc @@ -25,11 +25,13 @@ void Sculpt::gen_wifi_drv_start_content(Xml_generator &xml) gen_named_node(xml, "dir", "dev", [&] () { xml.node("null", [&] () {}); xml.node("zero", [&] () {}); - xml.node("rtc", [&] () {}); xml.node("log", [&] () {}); xml.node("null", [&] () {}); gen_named_node(xml, "jitterentropy", "random"); gen_named_node(xml, "jitterentropy", "urandom"); }); + gen_named_node(xml, "inline", "rtc", [&] () { + xml.append("2018-01-01 00:01"); + }); }); xml.node("libc", [&] () {