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 | # Find out "preferred" ramdisk compressor. Order of preference is |
| 9 | # 1. bzip2 efficient, and likely to be present |
| 10 | # 2. gzip former default |
| 11 | # 3. lzma |
| 12 | # 4. none |
| 13 | |
| 14 | # None of the above |
| 15 | suffix_y = |
| 16 | |
| 17 | # Lzma, but no gzip nor bzip2 |
| 18 | suffix_$(CONFIG_RD_LZMA) = .lzma |
| 19 | |
| 20 | # Gzip, but no bzip2 |
| 21 | suffix_$(CONFIG_RD_GZIP) = .gz |
| 22 | |
| 23 | # Bzip2 |
| 24 | suffix_$(CONFIG_RD_BZIP2) = .bz2 |
| 25 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 26 | |
| 27 | # Generate builtin.o based on initramfs_data.o |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 28 | obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data$(suffix_y).o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 30 | # initramfs_data.o contains the compressed initramfs_data.cpio image. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | # The image is included using .incbin, a dependency which is not |
| 32 | # tracked automatically. |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 33 | $(obj)/initramfs_data$(suffix_y).o: $(obj)/initramfs_data.cpio$(suffix_y) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 35 | ##### |
| 36 | # Generate the initramfs cpio archive |
| 37 | |
| 38 | hostprogs-y := gen_init_cpio |
| 39 | initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh |
| 40 | ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ |
Thomas Chou | a26d79c | 2006-11-25 11:09:18 -0800 | [diff] [blame] | 41 | $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 42 | ramfs-args := \ |
| 43 | $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ |
Nickolay | ff54171 | 2006-06-09 21:24:14 +0400 | [diff] [blame] | 44 | $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 45 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 46 | # .initramfs_data.cpio.d is used to identify all files included |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 47 | # in initramfs and to detect if any files are added/removed. |
| 48 | # Removed files are identified by directory timestamp being updated |
| 49 | # The dependency list is generated by gen_initramfs.sh -l |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 50 | ifneq ($(wildcard $(obj)/.initramfs_data.cpio.d),) |
| 51 | include $(obj)/.initramfs_data.cpio.d |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | endif |
| 53 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 54 | quiet_cmd_initfs = GEN $@ |
| 55 | cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 57 | targets := initramfs_data.cpio.gz initramfs_data.cpio.bz2 initramfs_data.cpio.lzma initramfs_data.cpio |
Sam Ravnborg | 58a2f7d | 2006-08-07 20:58:28 +0200 | [diff] [blame] | 58 | # do not try to update files included in initramfs |
| 59 | $(deps_initramfs): ; |
| 60 | |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 61 | $(deps_initramfs): klibcdirs |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 62 | # We rebuild initramfs_data.cpio if: |
| 63 | # 1) Any included file is newer then initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 64 | # 2) There are changes in which files are included (added or deleted) |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 65 | # 3) If gen_init_cpio are newer than initramfs_data.cpio |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 66 | # 4) arguments to gen_initramfs.sh changes |
Alain Knaff | a26ee60 | 2009-01-07 00:10:27 -0800 | [diff] [blame] | 67 | $(obj)/initramfs_data.cpio$(suffix_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs |
| 68 | $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.d |
Sam Ravnborg | d39a206b | 2006-04-11 13:24:32 +0200 | [diff] [blame] | 69 | $(call if_changed,initfs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |