Makefile (f0eef25339f92f7cd4aeea23d9ae97987a5a1e82) | Makefile (c33df4eaaf41fd3e34837a6ae9a5f9970c393d9f) |
---|---|
1# 2# kbuild file for usr/ - including initramfs image 3# 4 5klibcdirs:; 6PHONY += klibcdirs 7 8 9# Generate builtin.o based on initramfs_data.o | 1# 2# kbuild file for usr/ - including initramfs image 3# 4 5klibcdirs:; 6PHONY += klibcdirs 7 8 9# Generate builtin.o based on initramfs_data.o |
10obj-y := initramfs_data.o | 10obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o |
11 12# initramfs_data.o contains the initramfs_data.cpio.gz image. 13# The image is included using .incbin, a dependency which is not 14# tracked automatically. 15$(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio.gz FORCE 16 17##### 18# Generate the initramfs cpio archive --- 34 unchanged lines hidden --- | 11 12# initramfs_data.o contains the initramfs_data.cpio.gz image. 13# The image is included using .incbin, a dependency which is not 14# tracked automatically. 15$(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio.gz FORCE 16 17##### 18# Generate the initramfs cpio archive --- 34 unchanged lines hidden --- |