mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
ee352abc56
When building Genode on a Linux system running in a Xen Dom0, the 'xen' run target can run a Genode scenario in a Xen DomU. Usage: in build/x86_*/etc/build.conf, define: RUN_OPT = --include boot_dir/$(KERNEL) --include image/iso --include power_on/xen --include log/xen --include power_off/xen The Xen DomU runs in HVM mode and loads Genode from an ISO image. Serial log output is printed to the console and graphical output is shown in an SDL window. The Xen DomU ist managed using the 'xl' command line tool and it is possible to add configuration options in the 'xen_args' variable in a run script. Common options are: - disabling the graphical output: append xen_args { sdl="0" } - configuring a network device: append xen_args { vif=\["model=e1000,mac=02:00:00:00:01:01,bridge=xenbr0"\] } - configuring USB input devices: append xen_args { usbdevice=\["mouse","keyboard"\] } Note: the 'xl' tool requires super-user permissions and interactive password input can be troublesome in combination with 'expect' and is not practical for automatic tests. For this reason, the current implementation assumes that no password input is needed when running 'sudo xl', which can be achieved by creating a file '/etc/sudoers.d/xl' with the content 'user ALL=(root) NOPASSWD: /usr/sbin/xl' (where 'user' is the Linux user name). Fixes #2504 |
||
---|---|---|
.. | ||
etc | ||
include | ||
lib | ||
mk | ||
recipes | ||
run | ||
src | ||
README |
This is generic part of the Genode implementation. It consists of two parts: :_Core_: is the ultimate root of the Genode application tree and provides abstractions for the lowest-level hardware resources such as RAM, ROM, CPU, and generic device access. All generic parts of Core can be found here - for system-specific implementations refer to the appropriate 'base-<system>' directory. :_Base libraries and protocols_: that are used by each Genode component to interact with other components. This is the glue that holds everything together. _Core_ may export information about the hardware platform by an ROM called 'platform_info'. Depending on the platform, e.g. ARM or x86 or riscv, and depending on the boot mode and boot loader and kernel, some nodes may not be populated. !<platform_info> ! <acpi revision="2" rsdt="0x1fe93074" xsdt="0x1fe930e8"/> ! <boot> ! <framebuffer phys="0x7300000" width="1024" height="768" bpp="32"/> ! </boot> !</platform_info> If the ACPI RSDT and XSDT physical pointer is reported by the used kernel and/or bootloader, _Core_ may provide this information by the ROM. If the graphic device is initialised and can be directly used by a framebuffer driver, _Core_ may provide the physical pointer to the framebuffer, the resolution and color depth in bits.