Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 1 | # |
| 2 | # kbuild file for usr/ - including initramfs image |
| 3 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 5 | klibcdirs:; |
Sam Ravnborg | 48f1f05 | 2006-07-23 19:37:44 +0200 | [diff] [blame] | 6 | PHONY += klibcdirs |
| 7 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 8 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 9 | # Bzip2 |
P J P | 9ba4bcb | 2013-11-12 15:10:22 -0800 | [diff] [blame] | 10 | suffix_$(CONFIG_RD_BZIP2) = .bz2 |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 11 | |
Alain Knaff | ab76f3d | 2009-02-19 13:43:51 -0800 | [diff] [blame] | 12 | # Lzma |
P J P | 9ba4bcb | 2013-11-12 15:10:22 -0800 | [diff] [blame] | 13 | suffix_$(CONFIG_RD_LZMA) = .lzma |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 14 | |
Lasse Collin | 3ebe124 | 2011-01-12 17:01:23 -0800 | [diff] [blame] | 15 | # XZ |
P J P | 9ba4bcb | 2013-11-12 15:10:22 -0800 | [diff] [blame] | 16 | suffix_$(CONFIG_RD_XZ) = .xz |
Lasse Collin | 3ebe124 | 2011-01-12 17:01:23 -0800 | [diff] [blame] | 17 | |
Albin Tonnerre | 2a2a400 | 2010-05-26 14:44:28 -0700 | [diff] [blame] | 18 | # Lzo |
P J P | 9ba4bcb | 2013-11-12 15:10:22 -0800 | [diff] [blame] | 19 | suffix_$(CONFIG_RD_LZO) = .lzo |
| 20 | |
| 21 | # Lz4 |
| 22 | suffix_$(CONFIG_RD_LZ4) = .lz4 |
| 23 | |
| 24 | # Gzip |
| 25 | suffix_$(CONFIG_RD_GZIP) = .gz |
Albin Tonnerre | 2a2a400 | 2010-05-26 14:44:28 -0700 | [diff] [blame] | 26 | |
Hendrik Brueckner | 6ae64e4 | 2010-09-17 15:24:09 -0700 | [diff] [blame] | 27 | AFLAGS_initramfs_data.o += -DINITRAMFS_IMAGE="usr/initramfs_data.cpio$(suffix_y)" |
| 28 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 29 | # Generate builtin.o based on initramfs_data.o |
Hendrik Brueckner | 6ae64e4 | 2010-09-17 15:24:09 -0700 | [diff] [blame] | 30 | obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 32 | # initramfs_data.o contains the compressed initramfs_data.cpio image. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | # The image is included using .incbin, a dependency which is not |
| 34 | # tracked automatically. |
Hendrik Brueckner | 6ae64e4 | 2010-09-17 15:24:09 -0700 | [diff] [blame] | 35 | $(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio$(suffix_y) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 37 | ##### |
| 38 | # Generate the initramfs cpio archive |
| 39 | |
| 40 | hostprogs-y := gen_init_cpio |
| 41 | initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh |
| 42 | ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ |
Thomas Chou | a26d79c | 2006-11-25 11:09:18 -0800 | [diff] [blame] | 43 | $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 44 | ramfs-args := \ |
| 45 | $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ |
Nickolay | ff54171 | 2006-06-09 21:24:14 +0400 | [diff] [blame] | 46 | $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 47 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 48 | # .initramfs_data.cpio.d is used to identify all files included |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 49 | # in initramfs and to detect if any files are added/removed. |
| 50 | # Removed files are identified by directory timestamp being updated |
| 51 | # The dependency list is generated by gen_initramfs.sh -l |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 52 | ifneq ($(wildcard $(obj)/.initramfs_data.cpio.d),) |
| 53 | include $(obj)/.initramfs_data.cpio.d |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | endif |
| 55 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 56 | quiet_cmd_initfs = GEN $@ |
| 57 | cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
P J P | 9ba4bcb | 2013-11-12 15:10:22 -0800 | [diff] [blame] | 59 | targets := initramfs_data.cpio.gz initramfs_data.cpio.bz2 \ |
| 60 | initramfs_data.cpio.lzma initramfs_data.cpio.xz \ |
| 61 | initramfs_data.cpio.lzo initramfs_data.cpio.lz4 \ |
| 62 | initramfs_data.cpio |
Sam Ravnborg | 58a2f7d | 2006-08-07 20:58:28 +0200 | [diff] [blame] | 63 | # do not try to update files included in initramfs |
| 64 | $(deps_initramfs): ; |
| 65 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 66 | $(deps_initramfs): klibcdirs |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 67 | # We rebuild initramfs_data.cpio if: |
| 68 | # 1) Any included file is newer then initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 69 | # 2) There are changes in which files are included (added or deleted) |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 70 | # 3) If gen_init_cpio are newer than initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 71 | # 4) arguments to gen_initramfs.sh changes |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 72 | $(obj)/initramfs_data.cpio$(suffix_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs |
| 73 | $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.d |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 74 | $(call if_changed,initfs) |