Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 2 | # |
| 3 | # kbuild file for usr/ - including initramfs image |
| 4 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 6 | klibcdirs:; |
Sam Ravnborg | 48f1f05 | 2006-07-23 19:37:44 +0200 | [diff] [blame] | 7 | PHONY += klibcdirs |
| 8 | |
Nicholas Piggin | ae30ab4 | 2017-01-05 20:29:35 +1000 | [diff] [blame] | 9 | suffix_y = $(subst $\",,$(CONFIG_INITRAMFS_COMPRESSION)) |
Nicholas Piggin | 9e3596b | 2017-01-05 20:29:36 +1000 | [diff] [blame] | 10 | datafile_y = initramfs_data.cpio$(suffix_y) |
Florian Fainelli | e08b187 | 2017-11-02 15:59:44 -0700 | [diff] [blame] | 11 | datafile_d_y = .$(datafile_y).d |
Nicholas Piggin | 9e3596b | 2017-01-05 20:29:36 +1000 | [diff] [blame] | 12 | AFLAGS_initramfs_data.o += -DINITRAMFS_IMAGE="usr/$(datafile_y)" |
| 13 | |
Hendrik Brueckner | 6ae64e4 | 2010-09-17 15:24:09 -0700 | [diff] [blame] | 14 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 15 | # Generate builtin.o based on initramfs_data.o |
Hendrik Brueckner | 6ae64e4 | 2010-09-17 15:24:09 -0700 | [diff] [blame] | 16 | obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 18 | # initramfs_data.o contains the compressed initramfs_data.cpio image. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | # The image is included using .incbin, a dependency which is not |
| 20 | # tracked automatically. |
Nicholas Piggin | 9e3596b | 2017-01-05 20:29:36 +1000 | [diff] [blame] | 21 | $(obj)/initramfs_data.o: $(obj)/$(datafile_y) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 23 | ##### |
| 24 | # Generate the initramfs cpio archive |
| 25 | |
| 26 | hostprogs-y := gen_init_cpio |
| 27 | initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh |
| 28 | ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ |
Thomas Chou | a26d79c | 2006-11-25 11:09:18 -0800 | [diff] [blame] | 29 | $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 30 | ramfs-args := \ |
| 31 | $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ |
Nickolay | ff54171 | 2006-06-09 21:24:14 +0400 | [diff] [blame] | 32 | $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 33 | |
Florian Fainelli | e08b187 | 2017-11-02 15:59:44 -0700 | [diff] [blame] | 34 | # $(datafile_d_y) is used to identify all files included |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 35 | # in initramfs and to detect if any files are added/removed. |
| 36 | # Removed files are identified by directory timestamp being updated |
| 37 | # The dependency list is generated by gen_initramfs.sh -l |
Florian Fainelli | e08b187 | 2017-11-02 15:59:44 -0700 | [diff] [blame] | 38 | ifneq ($(wildcard $(obj)/$(datafile_d_y)),) |
| 39 | include $(obj)/$(datafile_d_y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | endif |
| 41 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 42 | quiet_cmd_initfs = GEN $@ |
| 43 | cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Nicholas Piggin | 9e3596b | 2017-01-05 20:29:36 +1000 | [diff] [blame] | 45 | targets := $(datafile_y) |
| 46 | |
Sam Ravnborg | 58a2f7d | 2006-08-07 20:58:28 +0200 | [diff] [blame] | 47 | # do not try to update files included in initramfs |
| 48 | $(deps_initramfs): ; |
| 49 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 50 | $(deps_initramfs): klibcdirs |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 51 | # We rebuild initramfs_data.cpio if: |
| 52 | # 1) Any included file is newer then initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 53 | # 2) There are changes in which files are included (added or deleted) |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 54 | # 3) If gen_init_cpio are newer than initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 55 | # 4) arguments to gen_initramfs.sh changes |
Nicholas Piggin | 9e3596b | 2017-01-05 20:29:36 +1000 | [diff] [blame] | 56 | $(obj)/$(datafile_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs |
Florian Fainelli | e08b187 | 2017-11-02 15:59:44 -0700 | [diff] [blame] | 57 | $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/$(datafile_d_y) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 58 | $(call if_changed,initfs) |