Makefile 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. PKG_NAME:= busybox
  5. PKG_VERSION:= 1.18.4
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= b03c5b46ced732679e525a920a1a62f5
  8. PKG_DESCR:= Core utilities for embedded systems
  9. PKG_SECTION:= base
  10. PKG_URL:= http://www.busybox.net/
  11. PKG_SITES:= http://www.busybox.net/downloads/
  12. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  13. PKG_SUBPKGS:= BUSYBOX UDHCPD
  14. PKGSD_UDHCPD:= uDHCPD meta package
  15. PKGSC_UDHCPD:= net
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,BUSYBOX,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. $(eval $(call PKG_template,UDHCPD,udhcpd,${PKG_VERSION}-${PKG_RELEASE},busybox,${PKGSD_UDHCPD},${PKGSC_UDHCPD}))
  19. # This is how to extract the Config.in files from a _built_ busybox source tree:
  20. #|for c in $(find build_viprinux_arm_glibc/w-busybox-1.18.1-4/busybox-1.18.1/ -name Config.in); do
  21. #| c=$(sed s,build_viprinux_arm_glibc/w-busybox-1.18.1-4/busybox-1.18.1/,, <<< $c)
  22. #| mkdir -p package/busybox/config_new/$(dirname $c)
  23. #| cp build_viprinux_arm_glibc/w-busybox-1.18.1-4/busybox-1.18.1/$c package/busybox/config_new/$c
  24. #|done
  25. CONFIG_STYLE:= manual
  26. BUILD_STYLE:= manual
  27. INSTALL_STYLE:= manual
  28. BB_MAKE_FLAGS:= V=1 IPKG_ARCH="${CPU_ARCH}" ARCH="${ARCH}" \
  29. HOSTCC="${CC_FOR_BUILD}" HOSTCFLAGS="$(CFLAGS_FOR_BUILD)" \
  30. -C ${WRKBUILD}
  31. ifneq (${ADK_NATIVE},y)
  32. BB_MAKE_FLAGS+= EXTRA_CFLAGS="${TARGET_CFLAGS}" CROSS_COMPILE="$(TARGET_CROSS)"
  33. endif
  34. # XXX: Although this looks like all new symbols are enabled when 'make oldconfig' runs, they're not.
  35. # In fact, you can pipe "yes ''" as well as "yes n", each time leading to the default value being
  36. # chosen for each unknown symbol.
  37. # A real solution for that task (disabling everything that's unknown, as we know better) is to
  38. # upgrade ${TOPDIR}/config so it understands the oldnoconfig target, and using that to update
  39. # the busybox config before compiling.
  40. # The workaround for now is to patch all busybox symbols to default n inside the busybox source
  41. # which do depend on non-existance of other packages outside the busybox source.
  42. do-configure:
  43. grep BUSYBOX_ $(TOPDIR)/.config|sed -e 's/BUSYBOX_/CONFIG_/' > \
  44. ${WRKBUILD}/.config
  45. $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config
  46. yes '' | $(MAKE) ${BB_MAKE_FLAGS} oldconfig $(MAKE_TRACE)
  47. do-build:
  48. $(MAKE) ${BB_MAKE_FLAGS} busybox
  49. do-install:
  50. $(MAKE) ${BB_MAKE_FLAGS} install $(MAKE_TRACE)
  51. $(CP) $(WRKINST)/* $(IDIR_BUSYBOX)/
  52. ifeq ($(ADK_DEBUG),y)
  53. ${INSTALL_BIN} $(WRKBUILD)/busybox_unstripped \
  54. $(IDIR_BUSYBOX)/bin/busybox
  55. endif
  56. ifneq ($(strip ${ADK_PACKAGE_CFGFS}),)
  57. cd ${IDIR_BUSYBOX}/sbin && rm -f halt poweroff reboot
  58. endif
  59. udhcpd-install:
  60. ${INSTALL_DIR} ${IDIR_UDHCPD}/etc/
  61. ${INSTALL_DATA} ./files/udhcpd.conf ${IDIR_UDHCPD}/etc/
  62. include ${TOPDIR}/mk/pkg-bottom.mk