Makefile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #
  2. # kbuild file for usr/ - including initramfs image
  3. #
  4. klibcdirs:;
  5. PHONY += klibcdirs
  6. # Gzip, but no bzip2
  7. suffix_$(CONFIG_INITRAMFS_COMPRESSION_GZIP) = .gz
  8. # Bzip2
  9. suffix_$(CONFIG_INITRAMFS_COMPRESSION_BZIP2) = .bz2
  10. # Lzma
  11. suffix_$(CONFIG_INITRAMFS_COMPRESSION_LZMA) = .lzma
  12. # Generate builtin.o based on initramfs_data.o
  13. obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data$(suffix_y).o
  14. # initramfs_data.o contains the compressed initramfs_data.cpio image.
  15. # The image is included using .incbin, a dependency which is not
  16. # tracked automatically.
  17. $(obj)/initramfs_data$(suffix_y).o: $(obj)/initramfs_data.cpio$(suffix_y) FORCE
  18. #####
  19. # Generate the initramfs cpio archive
  20. hostprogs-y := gen_init_cpio
  21. initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh
  22. ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \
  23. $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d)
  24. ramfs-args := \
  25. $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \
  26. $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID))
  27. # .initramfs_data.cpio.d is used to identify all files included
  28. # in initramfs and to detect if any files are added/removed.
  29. # Removed files are identified by directory timestamp being updated
  30. # The dependency list is generated by gen_initramfs.sh -l
  31. ifneq ($(wildcard $(obj)/.initramfs_data.cpio.d),)
  32. include $(obj)/.initramfs_data.cpio.d
  33. endif
  34. quiet_cmd_initfs = GEN $@
  35. cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input)
  36. targets := initramfs_data.cpio.gz initramfs_data.cpio.bz2 initramfs_data.cpio.lzma initramfs_data.cpio
  37. # do not try to update files included in initramfs
  38. $(deps_initramfs): ;
  39. $(deps_initramfs): klibcdirs
  40. # We rebuild initramfs_data.cpio if:
  41. # 1) Any included file is newer then initramfs_data.cpio
  42. # 2) There are changes in which files are included (added or deleted)
  43. # 3) If gen_init_cpio are newer than initramfs_data.cpio
  44. # 4) arguments to gen_initramfs.sh changes
  45. $(obj)/initramfs_data.cpio$(suffix_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs
  46. $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.d
  47. $(call if_changed,initfs)