---
Cc: [email protected]
We probably want to consolidate all the dom0less documentation in
one place rather than having to fix documation issues in a multiple
places one by one.
---
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 317a9e962a..0fafa01b5d 100644
--- a/docs/misc/arm/device-tree/booting.txt
+++ b/docs/misc/arm/device-tree/booting.txt
@@ -160,7 +160,7 @@ The kernel sub-node has the following properties:
- compatible
- "multiboot,kernel"
+ "multiboot,kernel", "multiboot,module"
- reg
@@ -175,7 +175,7 @@ The ramdisk sub-node has the following properties:
- compatible
- "multiboot,ramdisk"
+ "multiboot,ramdisk", "multiboot,module"
- reg
@@ -196,13 +196,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>;
};
};
@@ -215,13 +215,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>;
};
};
--
2.11.0