]> git.ipfire.org Git - thirdparty/linux.git/blame - usr/Makefile
gen_initramfs.sh: always output cpio even without -o option
[thirdparty/linux.git] / usr / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
d39a206b
SR
2#
3# kbuild file for usr/ - including initramfs image
4#
1da177e4 5
ae30ab4c 6suffix_y = $(subst $\",,$(CONFIG_INITRAMFS_COMPRESSION))
9e3596b0 7datafile_y = initramfs_data.cpio$(suffix_y)
e08b1877 8datafile_d_y = .$(datafile_y).d
9e3596b0
NP
9AFLAGS_initramfs_data.o += -DINITRAMFS_IMAGE="usr/$(datafile_y)"
10
6279eb3d
GT
11# clean rules do not have CONFIG_INITRAMFS_COMPRESSION. So clean up after all
12# possible compression formats.
13clean-files += initramfs_data.cpio*
6ae64e42 14
d39a206b 15# Generate builtin.o based on initramfs_data.o
6ae64e42 16obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o
1da177e4 17
a26ee60f 18# initramfs_data.o contains the compressed initramfs_data.cpio image.
1da177e4
LT
19# The image is included using .incbin, a dependency which is not
20# tracked automatically.
9e3596b0 21$(obj)/initramfs_data.o: $(obj)/$(datafile_y) FORCE
1da177e4 22
d39a206b
SR
23#####
24# Generate the initramfs cpio archive
25
26hostprogs-y := gen_init_cpio
d39a206b 27ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
4538f413 28 $(shell echo $(CONFIG_INITRAMFS_SOURCE)),$(srctree)/$(src)/default_cpio_list)
d39a206b
SR
29ramfs-args := \
30 $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \
ff541710 31 $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID))
d39a206b 32
e08b1877 33# $(datafile_d_y) is used to identify all files included
d39a206b
SR
34# in initramfs and to detect if any files are added/removed.
35# Removed files are identified by directory timestamp being updated
36# The dependency list is generated by gen_initramfs.sh -l
e08b1877
FF
37ifneq ($(wildcard $(obj)/$(datafile_d_y)),)
38 include $(obj)/$(datafile_d_y)
1da177e4
LT
39endif
40
d39a206b 41quiet_cmd_initfs = GEN $@
96680975 42 cmd_initfs = $(CONFIG_SHELL) $< -o $@ -l $(obj)/$(datafile_d_y) $(ramfs-args) $(ramfs-input)
d39a206b 43
9e3596b0
NP
44targets := $(datafile_y)
45
58a2f7d8
SR
46# do not try to update files included in initramfs
47$(deps_initramfs): ;
48
a26ee60f 49# We rebuild initramfs_data.cpio if:
c7fe0608 50# 1) Any included file is newer than initramfs_data.cpio
d39a206b 51# 2) There are changes in which files are included (added or deleted)
a26ee60f 52# 3) If gen_init_cpio are newer than initramfs_data.cpio
c7fe0608 53# 4) Arguments to gen_initramfs.sh changes
3e176683 54$(obj)/$(datafile_y): $(src)/gen_initramfs.sh $(obj)/gen_init_cpio $(deps_initramfs) FORCE
d39a206b 55 $(call if_changed,initfs)
d6fc9fcb
MY
56
57subdir-$(CONFIG_UAPI_HEADER_TEST) += include