]> bbs.cooldavid.org Git - net-next-2.6.git/blame - usr/Makefile
xps: Transmit Packet Steering
[net-next-2.6.git] / usr / Makefile
CommitLineData
d39a206b
SR
1#
2# kbuild file for usr/ - including initramfs image
3#
1da177e4 4
d39a206b 5klibcdirs:;
48f1f058
SR
6PHONY += klibcdirs
7
a26ee60f 8
0bc9f9e6 9# Gzip
ab76f3d7 10suffix_$(CONFIG_INITRAMFS_COMPRESSION_GZIP) = .gz
a26ee60f
AK
11
12# Bzip2
ab76f3d7 13suffix_$(CONFIG_INITRAMFS_COMPRESSION_BZIP2) = .bz2
a26ee60f 14
ab76f3d7
AK
15# Lzma
16suffix_$(CONFIG_INITRAMFS_COMPRESSION_LZMA) = .lzma
1da177e4 17
2a2a400f
AT
18# Lzo
19suffix_$(CONFIG_INITRAMFS_COMPRESSION_LZO) = .lzo
20
6ae64e42
HB
21AFLAGS_initramfs_data.o += -DINITRAMFS_IMAGE="usr/initramfs_data.cpio$(suffix_y)"
22
d39a206b 23# Generate builtin.o based on initramfs_data.o
6ae64e42 24obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o
1da177e4 25
a26ee60f 26# initramfs_data.o contains the compressed initramfs_data.cpio image.
1da177e4
LT
27# The image is included using .incbin, a dependency which is not
28# tracked automatically.
6ae64e42 29$(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio$(suffix_y) FORCE
1da177e4 30
d39a206b
SR
31#####
32# Generate the initramfs cpio archive
33
34hostprogs-y := gen_init_cpio
35initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh
36ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
a26d79ca 37 $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d)
d39a206b
SR
38ramfs-args := \
39 $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \
ff541710 40 $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID))
d39a206b 41
a26ee60f 42# .initramfs_data.cpio.d is used to identify all files included
d39a206b
SR
43# in initramfs and to detect if any files are added/removed.
44# Removed files are identified by directory timestamp being updated
45# The dependency list is generated by gen_initramfs.sh -l
a26ee60f
AK
46ifneq ($(wildcard $(obj)/.initramfs_data.cpio.d),)
47 include $(obj)/.initramfs_data.cpio.d
1da177e4
LT
48endif
49
d39a206b
SR
50quiet_cmd_initfs = GEN $@
51 cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input)
52
2a2a400f 53targets := initramfs_data.cpio.gz initramfs_data.cpio.bz2 initramfs_data.cpio.lzma initramfs_data.cpio.lzo initramfs_data.cpio
58a2f7d8
SR
54# do not try to update files included in initramfs
55$(deps_initramfs): ;
56
d39a206b 57$(deps_initramfs): klibcdirs
a26ee60f
AK
58# We rebuild initramfs_data.cpio if:
59# 1) Any included file is newer then initramfs_data.cpio
d39a206b 60# 2) There are changes in which files are included (added or deleted)
a26ee60f 61# 3) If gen_init_cpio are newer than initramfs_data.cpio
d39a206b 62# 4) arguments to gen_initramfs.sh changes
a26ee60f
AK
63$(obj)/initramfs_data.cpio$(suffix_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs
64 $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.d
d39a206b 65 $(call if_changed,initfs)
1da177e4 66