Makefile 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.20.2
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= e025414bc6cd79579cc7a32a45d3ae1c
  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}" GCC_HONOUR_COPTS=s \
  29. HOSTCC="${CC_FOR_BUILD}" HOSTCFLAGS="$(CFLAGS_FOR_BUILD)" \
  30. -C ${WRKBUILD}
  31. ifneq (${ADK_NATIVE},y)
  32. ifeq ($(ADK_TARGET_LIB_STATIC_LIBGCC),y)
  33. BB_MAKE_FLAGS+= CROSS_COMPILE="$(TARGET_CROSS)" EXTRA_LDFLAGS='-static-libgcc'
  34. else
  35. BB_MAKE_FLAGS+= CROSS_COMPILE="$(TARGET_CROSS)"
  36. endif
  37. else
  38. BB_MAKE_FLAGS+= EXTRA_LDFLAGS="-static-libgcc"
  39. endif
  40. # XXX: Although this looks like all new symbols are enabled when 'make oldconfig' runs, they're not.
  41. # In fact, you can pipe "yes ''" as well as "yes n", each time leading to the default value being
  42. # chosen for each unknown symbol.
  43. # A real solution for that task (disabling everything that's unknown, as we know better) is to
  44. # upgrade ${TOPDIR}/config so it understands the oldnoconfig target, and using that to update
  45. # the busybox config before compiling.
  46. # The workaround for now is to patch all busybox symbols to default n inside the busybox source
  47. # which do depend on non-existance of other packages outside the busybox source.
  48. do-configure:
  49. grep BUSYBOX_ $(TOPDIR)/.config|sed -e 's/BUSYBOX_/CONFIG_/' > \
  50. ${WRKBUILD}/.config
  51. $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config
  52. yes '' | $(MAKE) ${BB_MAKE_FLAGS} oldconfig $(MAKE_TRACE)
  53. do-build:
  54. $(MAKE) ${BB_MAKE_FLAGS} busybox
  55. do-install:
  56. $(MAKE) ${BB_MAKE_FLAGS} install $(MAKE_TRACE)
  57. $(CP) $(WRKINST)/* $(IDIR_BUSYBOX)/
  58. ifeq ($(ADK_DEBUG),y)
  59. ${INSTALL_BIN} $(WRKBUILD)/busybox_unstripped \
  60. $(IDIR_BUSYBOX)/bin/busybox
  61. endif
  62. ifneq ($(strip ${ADK_PACKAGE_CFGFS}),)
  63. cd ${IDIR_BUSYBOX}/sbin && rm -f halt poweroff reboot
  64. endif
  65. udhcpd-install:
  66. ${INSTALL_DIR} ${IDIR_UDHCPD}/etc/
  67. ${INSTALL_DATA} ./files/udhcpd.conf ${IDIR_UDHCPD}/etc/
  68. include ${TOPDIR}/mk/pkg-bottom.mk