12345678910111213141516171819202122232425262728293031 |
- From 1805f971ceae93d1799b705f3fd964c6d1090260 Mon Sep 17 00:00:00 2001
- From: nl6720 <nl6720@gmail.com>
- Date: Thu, 16 Jul 2020 12:07:08 +0300
- Subject: [PATCH 3/3] install/block: include NVDIMM modules
- This allows for booting from an ISO that was copied to a pmem device, such as '/dev/pmem0'.
- See also https://github.com/u-root/webboot/ .
- Co-authored-by: Daniel Maslowski <info@orangecms.org>
- ---
- install/block | 3 +++
- 1 file changed, 3 insertions(+)
- diff --git a/install/block b/install/block
- index 11c4665..2942371 100644
- --- a/install/block
- +++ b/install/block
- @@ -23,6 +23,9 @@ build() {
-
- # virtio
- add_checked_modules 'virtio'
- +
- + # nvdimm
- + add_checked_modules '/drivers/nvdimm/'
- }
-
- help() {
- --
- 2.12.2
|