[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] xen/docs: arm: Update dom0less binding and example
commit 90dd445b95afc0b795ba4dc694c22b3a8a6c4d1f Author: Julien Grall <julien.grall@xxxxxxx> AuthorDate: Tue Aug 13 22:11:15 2019 +0100 Commit: Julien Grall <julien.grall@xxxxxxx> CommitDate: Thu Oct 10 15:50:00 2019 +0100 xen/docs: arm: Update dom0less binding and example The binding for the dom0less module does not match Xen implementation. Any module should contain the compatible "multiboot,module" to be recognized. This was clearly an oversight as other examples with Xen code base provide the compatible "multiboot,module". So fix the binding and the example associated to it. Signed-off-by: Julien Grall <julien.grall@xxxxxxx> Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> --- docs/misc/arm/device-tree/booting.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/misc/arm/device-tree/booting.txt b/docs/misc/arm/device-tree/booting.txt index 649e00d09f..5243bc7fd3 100644 --- a/docs/misc/arm/device-tree/booting.txt +++ b/docs/misc/arm/device-tree/booting.txt @@ -171,7 +171,7 @@ The kernel sub-node has the following properties: - compatible - "multiboot,kernel" + "multiboot,kernel", "multiboot,module" - reg @@ -186,7 +186,7 @@ The ramdisk sub-node has the following properties: - compatible - "multiboot,ramdisk" + "multiboot,ramdisk", "multiboot,module" - reg @@ -207,13 +207,13 @@ chosen { vpl011; module@0x4a000000 { - compatible = "multiboot,kernel"; + compatible = "multiboot,kernel", "multiboot,module"; reg = <0x0 0x4a000000 0xffffff>; bootargs = "console=ttyAMA0 init=/bin/sh"; }; module@0x4b000000 { - compatible = "multiboot,ramdisk"; + compatible = "multiboot,ramdisk", "multiboot,module"; reg = <0x0 0x4b000000 0xffffff>; }; }; @@ -226,13 +226,13 @@ chosen { cpus = <1>; module@0x4c000000 { - compatible = "multiboot,kernel"; + compatible = "multiboot,kernel", "multiboot,module"; reg = <0x0 0x4c000000 0xffffff>; bootargs = "console=ttyAMA0 init=/bin/sh"; }; module@0x4d000000 { - compatible = "multiboot,ramdisk"; + compatible = "multiboot,ramdisk", "multiboot,module"; reg = <0x0 0x4d000000 0xffffff>; }; }; -- 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 |