blob: e93824269da2aeebdd99c41aebda07a0eb0e5993 [file] [log] [blame]
Sam Ravnborgd39a206b2006-04-11 13:24:32 +02001#
2# kbuild file for usr/ - including initramfs image
3#
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Sam Ravnborgd39a206b2006-04-11 13:24:32 +02005klibcdirs:;
6
7# Generate builtin.o based on initramfs_data.o
Linus Torvalds1da177e2005-04-16 15:20:36 -07008obj-y := initramfs_data.o
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010# initramfs_data.o contains the initramfs_data.cpio.gz image.
11# The image is included using .incbin, a dependency which is not
12# tracked automatically.
13$(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio.gz FORCE
14
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020015#####
16# Generate the initramfs cpio archive
17
18hostprogs-y := gen_init_cpio
19initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh
20ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
21 $(CONFIG_INITRAMFS_SOURCE),-d)
22ramfs-args := \
23 $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \
Nickolayff541712006-06-09 21:24:14 +040024 $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID))
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020025
26# .initramfs_data.cpio.gz.d is used to identify all files included
27# in initramfs and to detect if any files are added/removed.
28# Removed files are identified by directory timestamp being updated
29# The dependency list is generated by gen_initramfs.sh -l
30ifneq ($(wildcard $(obj)/.initramfs_data.cpio.gz.d),)
31 include $(obj)/.initramfs_data.cpio.gz.d
Linus Torvalds1da177e2005-04-16 15:20:36 -070032endif
33
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020034quiet_cmd_initfs = GEN $@
35 cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020037targets := initramfs_data.cpio.gz
38$(deps_initramfs): klibcdirs
39# We rebuild initramfs_data.cpio.gz if:
40# 1) Any included file is newer then initramfs_data.cpio.gz
41# 2) There are changes in which files are included (added or deleted)
42# 3) If gen_init_cpio are newer than initramfs_data.cpio.gz
43# 4) arguments to gen_initramfs.sh changes
44$(obj)/initramfs_data.cpio.gz: $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs
45 $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.gz.d
46 $(call if_changed,initfs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047