diff options
author | Pankaj Raghav <p.raghav@samsung.com> | 2023-03-11 10:44:18 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-11 13:15:00 +0000 |
commit | f8b67e15962306455f919038d069a6a9b122f72c (patch) | |
tree | bcf65e682a6f2e814e8df117cd6f4e268169884f /Base | |
parent | 84e17fcbcca4f1d572ff8b36978c3ee555ac62a0 (diff) | |
download | serenity-f8b67e15962306455f919038d069a6a9b122f72c.zip |
Kernel/Storage+Base: Fix boot_device_addressing document for NVMe
The LUN.target_id parameter points to a NVMe Namespace which starts from
1 and not 0. Fix the document to reflect the same while addressing a
nvme device in the boot parameters
Diffstat (limited to 'Base')
-rw-r--r-- | Base/usr/share/man/man7/boot_device_addressing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man7/boot_device_addressing.md b/Base/usr/share/man/man7/boot_device_addressing.md index 021ace43ad..e002dc91c3 100644 --- a/Base/usr/share/man/man7/boot_device_addressing.md +++ b/Base/usr/share/man/man7/boot_device_addressing.md @@ -30,7 +30,7 @@ to address raw `StorageDevice`s: ``` ata0:0:0 [First ATA controller, ATA first primary channel, master device] -nvme0:0 [First NVMe Controller, First NVMe Namespace] +nvme0:1:0 [First NVMe Controller, First NVMe Namespace, Not Applicable] ramdisk0 [First Ramdisk] ``` |