Makefile 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. include $(TOPDIR)/mk/rootfs.mk
  5. all: install
  6. ### Kernel .config Creation
  7. # The following target combines all kernel-related variables and
  8. # config files into a single one to be used as the final kernel
  9. # configuration when building. This is how it's done:
  10. # 1) fetch all ADK_KPACKAGE_KMOD_* vars into
  11. # .kernelconfig.modules and set them to "m",
  12. # fetch all ADK_KERNELMOD_* vars into
  13. # .kernelconfig.modules and set them to "m"
  14. # 2) fetch all enabled ADK_KERNEL_* vars into
  15. # .kernelconfig.kernel (no conversion, as they are booleans)
  16. # 3) repeat 2) for the disabled ones and save them into
  17. # .kernelconfig.nokernel (to overwrite defaults)
  18. # 4) get the device-specific static kernel config and place it into
  19. # .kernelconfig.board
  20. # 5) prepare for merging:
  21. # * if a variable is disabled in .kernelconfig.board and
  22. # enabled in either of .kernelconfig.{modules,kernel},
  23. # remove it from .kernelconfig.board
  24. # * append ${FS_CMDLINE} to the kernel commandline inside
  25. # .kernelconfig.board
  26. # 6) merge (cat) it all together into .kernelconfig.tmp
  27. # 7) check if .kernelconfig.tmp differs from the current one
  28. # (.kernelconfig) at all, overwriting the current one
  29. # only if it does (so the timestamp stays intact)
  30. # 8) remove the temporary .kernelconfig.tmp
  31. ###
  32. config-prepare: $(TOPDIR)/.config
  33. @sed -n '/^ADK_KPACKAGE_KMOD/s//CONFIG/p' ${TOPDIR}/.config | \
  34. sed 's/=y/=m/' >${BUILD_DIR}/.kernelconfig.modules
  35. @sed -n '/^ADK_KERNEL_MOD/s//CONFIG/p' ${TOPDIR}/.config | \
  36. sed 's/=y/=m/' >>${BUILD_DIR}/.kernelconfig.modules
  37. @sed -n '/^ADK_KERNEL/s//CONFIG/p' ${TOPDIR}/.config \
  38. >${BUILD_DIR}/.kernelconfig.kernel
  39. @sed -n '/^ADK_MOD_KERNEL/s//CONFIG/p' ${TOPDIR}/.config | \
  40. sed 's/=y/=m/' >${BUILD_DIR}/.kernelconfig.modkernel
  41. @sed -n '/^# ADK_KERNEL/s//# CONFIG/p' ${TOPDIR}/.config \
  42. >${BUILD_DIR}/.kernelconfig.nokernel
  43. ifeq ($(ADK_NATIVE),y)
  44. @if [ -f /etc/adktarget ];then \
  45. cp $(TOPDIR)/target/$(ARCH)/kernel.config ${BUILD_DIR}/.kernelconfig.board; \
  46. else \
  47. if [ -f /proc/config.gz ];then zcat /proc/config.gz > ${BUILD_DIR}/.kernelconfig.board; else cp ${ADK_TARGET}/kernel.config.$(ARCH) ${BUILD_DIR}/.kernelconfig.board; fi; \
  48. fi
  49. else
  50. @cp ${ADK_TARGET_ARCH}/kernel.config ${BUILD_DIR}/.kernelconfig.board
  51. endif
  52. @(cat ${BUILD_DIR}/.kernelconfig.{modules,kernel} | \
  53. while IFS='=' read symbol value; do \
  54. sed -i -e "/^# $$symbol/d" ${BUILD_DIR}/.kernelconfig.board; \
  55. done;)
  56. @sed -i -e 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 ${FS_CMDLINE}"#' \
  57. ${BUILD_DIR}/.kernelconfig.board
  58. ifneq ($(ADK_TARGET_CMDLINE),)
  59. @sed -i -e 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 ${ADK_TARGET_CMDLINE}"#' \
  60. ${BUILD_DIR}/.kernelconfig.board
  61. endif
  62. ifeq ($(ADK_QUIET_KERNEL),y)
  63. @sed -i -e 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 quiet"#' \
  64. ${BUILD_DIR}/.kernelconfig.board
  65. endif
  66. ifeq ($(ADK_KERNEL_DEBUG_WITH_KGDB),y)
  67. @sed -i -e 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 kgdbwait kgdboc=ttyS0,115200"#' \
  68. ${BUILD_DIR}/.kernelconfig.board
  69. endif
  70. @cd ${BUILD_DIR} && cat .kernelconfig.board .kernelconfig.nokernel \
  71. .kernelconfig.kernel .kernelconfig.modkernel .kernelconfig.modules \
  72. >.kernelconfig.tmp
  73. @cd ${BUILD_DIR} && cmp -s .kernelconfig.tmp .kernelconfig || \
  74. cp .kernelconfig.tmp .kernelconfig
  75. @-rm -f ${BUILD_DIR}/.kernelconfig.tmp
  76. prepare: $(ADK_TARGET_ARCH)-prepare
  77. compile: $(ADK_TARGET_ARCH)-compile
  78. image: $(ADK_TARGET_ARCH)-imageclean $(ADK_TARGET_ARCH)-imageinstall
  79. install: $(ADK_TARGET_ARCH)-imageclean $(ADK_TARGET_ARCH)-install $(ADK_TARGET_ARCH)-imageinstall
  80. clean: $(ADK_TARGET_ARCH)-clean $(ADK_TARGET_ARCH)-imageclean
  81. %-clean:
  82. $(TRACE) target/$(patsubst %-clean,%,$@)-clean
  83. $(MAKE) -C $(patsubst %-clean,%,$@) clean
  84. %-imageclean:
  85. $(TRACE) target/$(patsubst %-imageclean,%,$@)-imageclean
  86. $(MAKE) -C $(patsubst %-imageclean,%,$@) imageclean
  87. %-prepare:
  88. $(TRACE) target/$(patsubst %-prepare,%,$@)-prepare
  89. $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
  90. %-imageprepare:
  91. $(TRACE) target/$(patsubst %-imageprepare,%,$@)-imageprepare
  92. $(MAKE) -C $(patsubst %-imageprepare,%,$@) imageprepare
  93. %-compile: %-prepare
  94. $(TRACE) target/$(patsubst %-compile,%,$@)-compile
  95. $(MAKE) -C $(patsubst %-compile,%,$@) compile
  96. %-install: %-compile
  97. $(TRACE) target/$(patsubst %-install,%,$@)-install
  98. $(MAKE) -C $(patsubst %-install,%,$@) install
  99. %-imageinstall: %-imageprepare
  100. $(TRACE) target/$(patsubst %-imageinstall,%,$@)-imageinstall
  101. $(MAKE) -C $(patsubst %-imageinstall,%,$@) imageinstall
  102. @echo 'Login as user root with password ${ADK_RUNTIME_PASSWORD} via ssh or console.'