Makefile 2.3 KB
Newer Older
1 2 3
#
# kbuild file for usr/ - including initramfs image
#
L
Linus Torvalds 已提交
4

5
klibcdirs:;
6 7
PHONY += klibcdirs

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# Find out "preferred" ramdisk compressor. Order of preference is
#  1. bzip2 efficient, and likely to be present
#  2. gzip former default
#  3. lzma
#  4. none

# None of the above
suffix_y                   =

# Lzma, but no gzip nor bzip2
suffix_$(CONFIG_RD_LZMA)   = .lzma

# Gzip, but no bzip2
suffix_$(CONFIG_RD_GZIP)   = .gz

# Bzip2
suffix_$(CONFIG_RD_BZIP2)  = .bz2

L
Linus Torvalds 已提交
26

27
# Generate builtin.o based on initramfs_data.o
28
obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data$(suffix_y).o
L
Linus Torvalds 已提交
29

30
# initramfs_data.o contains the compressed initramfs_data.cpio image.
L
Linus Torvalds 已提交
31 32
# The image is included using .incbin, a dependency which is not
# tracked automatically.
33
$(obj)/initramfs_data$(suffix_y).o: $(obj)/initramfs_data.cpio$(suffix_y) FORCE
L
Linus Torvalds 已提交
34

35 36 37 38 39 40
#####
# Generate the initramfs cpio archive

hostprogs-y := gen_init_cpio
initramfs   := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh
ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
41
			$(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d)
42 43
ramfs-args  := \
        $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \
N
Nickolay 已提交
44
        $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID))
45

46
# .initramfs_data.cpio.d is used to identify all files included
47 48 49
# in initramfs and to detect if any files are added/removed.
# Removed files are identified by directory timestamp being updated
# The dependency list is generated by gen_initramfs.sh -l
50 51
ifneq ($(wildcard $(obj)/.initramfs_data.cpio.d),)
	include $(obj)/.initramfs_data.cpio.d
L
Linus Torvalds 已提交
52 53
endif

54 55 56
quiet_cmd_initfs = GEN     $@
      cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input)

57
targets := initramfs_data.cpio.gz initramfs_data.cpio.bz2 initramfs_data.cpio.lzma initramfs_data.cpio
58 59 60
# do not try to update files included in initramfs
$(deps_initramfs): ;

61
$(deps_initramfs): klibcdirs
62 63
# We rebuild initramfs_data.cpio if:
# 1) Any included file is newer then initramfs_data.cpio
64
# 2) There are changes in which files are included (added or deleted)
65
# 3) If gen_init_cpio are newer than initramfs_data.cpio
66
# 4) arguments to gen_initramfs.sh changes
67 68
$(obj)/initramfs_data.cpio$(suffix_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs
	$(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.d
69
	$(call if_changed,initfs)
L
Linus Torvalds 已提交
70