Makefile 2.3 KB

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