Skip to content

Commit 4837b21

Browse files
committed
updated documentation for PyCPIO usage
Signed-off-by: Zen <[email protected]>
1 parent ef2ed51 commit 4837b21

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ The original goal of this project was to create an initramfs suitable for decryp
1616
- Allows for late insertion of a smartcard
1717
- Can fail back to plain password entry
1818
* Key entry over serial
19-
* Automatic CPIO generation (gen_init_cpio)
19+
* Automatic CPIO generation (PyCPIO)
20+
- Device nodes are created within the CPIO only, so true root privileges are not required.
2021
* Basic configuration validation in `hostonly` mode
2122
* Similar usage/arguments as Dracut
2223

@@ -113,7 +114,6 @@ Modules write to a shared config dict that is accessible by other modules.
113114
This module handles CPIO creation.
114115

115116
* `out_file` (ugrd.cpio) Sets the name of the output file, under `out_dir` unless a path is defined.
116-
* `cpio_list_name` (cpio.list) Sets the name of the cpio list file for `gen_init_cpio`
117117
* `mknod_cpio` (true) Only create devicne nodes within the CPIO.
118118

119119
##### symlink creation

ugrd/base/cpio.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
out_file = "ugrd.cpio"
2-
cpio_list_name = "cpio.list"
32
mknod_cpio = true
43

54
[imports.pack]
65
"ugrd.base.cpio" = [ "make_cpio" ]
76

87
[custom_parameters]
98
out_file = "str" # The name of the cpio file to create.
10-
cpio_list_name = "str" # The name of the CPIO packing list to create
119
mknod_cpio = "bool" # When enabled, mknod is not used to create device nodes, they are just created in the cpio.

0 commit comments

Comments
 (0)