|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] xen/doc: Improve Dom0-less documentation
commit 875f487bda2ba2e4ed6390db1f9da4728658b6c2
Author: Viktor Mitin <viktor.mitin.19@xxxxxxxxx>
AuthorDate: Wed Jul 31 11:10:41 2019 +0300
Commit: Julien Grall <julien.grall@xxxxxxx>
CommitDate: Wed Jul 31 20:19:23 2019 +0100
xen/doc: Improve Dom0-less documentation
- Changed unprintable characters with %s/\%xA0/ /g
So all the spaces are 0x20 now.
- Added address-cells and size-cells to configuration example.
This resolves the dom0less boot issue in case of arm64.
- Added some notes about xl tools usage in case of dom0less.
Signed-off-by: Viktor Mitin <viktor_mitin@xxxxxxxx>
[julien: Remove newline at the end of the file]
Acked-by: Julien Grall <julien.grall@xxxxxxx>
---
docs/features/dom0less.pandoc | 60 +++++++++++++++++++++++++++++--------------
1 file changed, 41 insertions(+), 19 deletions(-)
diff --git a/docs/features/dom0less.pandoc b/docs/features/dom0less.pandoc
index e076e3739e..d798596cdf 100644
--- a/docs/features/dom0less.pandoc
+++ b/docs/features/dom0less.pandoc
@@ -40,8 +40,8 @@ to boot. For example if this is the bootcmd for Xen and Dom0:
bootm 0x1400000 0x9000000 0x1280000
-If we want to add one DomU with Image-DomUÂ as the DomU kernel
-and ramdisk-DomU as DomU ramdisk:
+If we want to add one DomU with Image-DomU as the DomU kernel
+and ramdisk-DomU as DomU ramdisk:
tftpb 0x1280000 xen.dtb
tftpb 0x80000 xen-Image
@@ -61,27 +61,32 @@ the presence of the additional VM and its configuration. It
is done via
device tree adding a node under /chosen as follows:
domU1 {
- Â Â compatible = "xen,domain";
- Â Â memory = <0x20000>;
- Â Â cpus = 1;
- Â Â Â vpl011;
-
- Â Â module@2000000 {
- Â Â Â Â compatible = "multiboot,kernel", "multiboot,module";
- Â Â Â Â reg = <0x2000000 0xffffff>;
- Â Â Â Â bootargs = "console=ttyAMA0";
- Â Â };
-
- Â Â module@30000000 {
- Â Â Â Â compatible = "multiboot,ramdisk", "multiboot,module";
- Â Â Â Â reg = <0x3000000 0xffffff>;
- Â Â };
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "xen,domain";
+ memory = <0 0x20000>;
+ cpus = <1>;
+ vpl011;
+
+ module@2000000 {
+ compatible = "multiboot,kernel", "multiboot,module";
+ reg = <0x2000000 0xffffff>;
+ bootargs = "console=ttyAMA0";
+ };
+
+ module@30000000 {
+ compatible = "multiboot,ramdisk", "multiboot,module";
+ reg = <0x3000000 0xffffff>;
+ };
};
-Where memory is the memory of the VM in KBs, cpus is the number of
-cpus. module@2000000 and module@3000000 advertise where the kernel and
+Where memory is the memory of the VM in KBs, cpus is the number of
+cpus. module@2000000 and module@3000000 advertise where the kernel and
ramdisk are in memory.
+Note: the size specified should exactly match the size of the Kernel/initramfs.
+Otherwise, they may be unusable in Xen (for instance if they are compressed).
+
See docs/misc/arm/device-tree/booting.txt for more information.
Limitations
@@ -111,3 +116,20 @@ limitations:
the Xen command line. The NULL scheduler automatically assigns and
pins vCPUs to pCPUs, but the vCPU-pCPU assignments cannot be
configured.
+
+Notes
+-----
+
+- 'xl console' command will not attach to the domain's console in case
+ of dom0less. DomU are domains created by Xen (similar to Dom0) and
+ therefore they are all managed by Xen and some of the commands may not work.
+
+ A user is allowed to configure the key sequence to switch input.
+ Pressing the Xen "conswitch" (Ctrl-A by default) three times
+ switches input in case of dom0less mode.
+
+- Domains created by Xen will have no name at boot. Domain-0 has a name
+ thanks to the helper xen-init-dom0 called at boot by the initscript.
+ If you want to setup DomU name, then you will have to create the xenstore
+ node associated. By default DomU names are shown as '(null)' in the
+ xl domains list.
--
generated by git-patchbot for /home/xen/git/xen.git#staging
_______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |