Makefile 3.0 KB

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