Skip to content

Commit 80e715a

Browse files
committed
initramfs: rename gen_initramfs_list.sh to gen_initramfs.sh
The comments in usr/Makefile wrongly refer to the script name (twice). Line 37: # The dependency list is generated by gen_initramfs.sh -l Line 54: # 4) Arguments to gen_initramfs.sh changes There does not exist such a script. I was going to fix the comments, but after some consideration, I thought "gen_initramfs.sh" would be more suitable than "gen_initramfs_list.sh" because it generates an initramfs image in the common usage. The script generates a list that can be fed to gen_init_cpio only when it is directly run without -o or -l option. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent a4c968e commit 80e715a

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

usr/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $(obj)/initramfs_data.o: $(obj)/$(datafile_y) FORCE
2424
# Generate the initramfs cpio archive
2525

2626
hostprogs-y := gen_init_cpio
27-
initramfs := $(CONFIG_SHELL) $(srctree)/$(src)/gen_initramfs_list.sh
27+
initramfs := $(CONFIG_SHELL) $(srctree)/$(src)/gen_initramfs.sh
2828
ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
2929
$(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d)
3030
ramfs-args := \
File renamed without changes.

0 commit comments

Comments
 (0)