Python3: avoid deprecated Xml_node methods

This commit also removes the dependency of the python3.run script from
the rtc driver to make it less hardware dependent.

Issue genodelabs/genode#3755
This commit is contained in:
Norman Feske
2020-05-12 17:27:57 +02:00
parent 323ab9932e
commit b3fb51eb6f
2 changed files with 55 additions and 45 deletions

View File

@@ -21,7 +21,6 @@ import_from_depot [depot_user]/pkg/python3
build {
core init
timer
drivers/rtc
server/dynamic_rom
}
@@ -51,10 +50,6 @@ install_config {
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer" /></provides>
</start>
<start name="rtc_drv" } [rtc_start_attr] {>
<resource name="RAM" quantum="1M"/>
<provides> <service name="Rtc"/> </provides>
</start>
<start name="dynamic_rom">
<resource name="RAM" quantum="1M"/>
<provides> <service name="ROM" /> </provides>
@@ -95,7 +90,7 @@ print("Hello again")
<log/>
<jitterentropy name="urandom" />
<jitterentropy name="random" />
<rtc/>
<inline name="rtc">2018-01-01 00:01</inline>
<zero/>
</dir>
<dir name="python">
@@ -116,9 +111,8 @@ print("Hello again")
# generic modules
append boot_modules {
core init
ld.lib.so
ld.lib.so
timer
rtc_drv
dynamic_rom
}