summaryrefslogtreecommitdiffstats
path: root/Documentation/driver-api/early-userspace/early_userspace_support.rst
diff options
context:
space:
mode:
authorRobert Richter <rrichter@amd.com>2021-07-15 11:26:02 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2021-07-18 23:48:14 +0900
commit5e60f363b38fd40e4d8838b5d6f4d4ecee92c777 (patch)
treeb3560bc58bd51a8e2cd04afe65a9e4a4f91dcdf5 /Documentation/driver-api/early-userspace/early_userspace_support.rst
parent1d11053dc63094075bf9e4809fffd3bb5e72f9a6 (diff)
downloadlinux-5e60f363b38fd40e4d8838b5d6f4d4ecee92c777.tar.gz
linux-5e60f363b38fd40e4d8838b5d6f4d4ecee92c777.tar.bz2
linux-5e60f363b38fd40e4d8838b5d6f4d4ecee92c777.zip
Documentation: Fix intiramfs script name
Documentation was not changed when renaming the script in commit 80e715a06c2d ("initramfs: rename gen_initramfs_list.sh to gen_initramfs.sh"). Fixing this. Basically does: $ sed -i -e s/gen_initramfs_list.sh/gen_initramfs.sh/g $(git grep -l gen_initramfs_list.sh) Fixes: 80e715a06c2d ("initramfs: rename gen_initramfs_list.sh to gen_initramfs.sh") Signed-off-by: Robert Richter <rrichter@amd.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/driver-api/early-userspace/early_userspace_support.rst')
-rw-r--r--Documentation/driver-api/early-userspace/early_userspace_support.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/driver-api/early-userspace/early_userspace_support.rst b/Documentation/driver-api/early-userspace/early_userspace_support.rst
index 8a58c61932ff..61bdeac1bae5 100644
--- a/Documentation/driver-api/early-userspace/early_userspace_support.rst
+++ b/Documentation/driver-api/early-userspace/early_userspace_support.rst
@@ -69,17 +69,17 @@ early userspace image can be built by an unprivileged user.
As a technical note, when directories and files are specified, the
entire CONFIG_INITRAMFS_SOURCE is passed to
-usr/gen_initramfs_list.sh. This means that CONFIG_INITRAMFS_SOURCE
+usr/gen_initramfs.sh. This means that CONFIG_INITRAMFS_SOURCE
can really be interpreted as any legal argument to
-gen_initramfs_list.sh. If a directory is specified as an argument then
+gen_initramfs.sh. If a directory is specified as an argument then
the contents are scanned, uid/gid translation is performed, and
usr/gen_init_cpio file directives are output. If a directory is
-specified as an argument to usr/gen_initramfs_list.sh then the
+specified as an argument to usr/gen_initramfs.sh then the
contents of the file are simply copied to the output. All of the output
directives from directory scanning and file contents copying are
processed by usr/gen_init_cpio.
-See also 'usr/gen_initramfs_list.sh -h'.
+See also 'usr/gen_initramfs.sh -h'.
Where's this all leading?
=========================