Changeset 3286
- Timestamp:
- 07/19/07 15:38:19 (1 year ago)
- Files:
-
- trunk/freewrt/package/busybox (modified) (1 prop)
- trunk/freewrt/package/busybox/Config.in (modified) (1 diff)
- trunk/freewrt/package/busybox/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/busybox
- Property svn:ignore changed from
info.mk
to
bbconfig.custom
info.mk
- Property svn:ignore changed from
trunk/freewrt/package/busybox/Config.in
r3234 r3286 12 12 Most people will answer Y. 13 13 14 choice 15 prompt "busybox configuration" 16 depends on FWRT_PACKAGE_BUSYBOX 17 default FWRT_PACKAGE_BUSYBOX_SMALL 18 14 19 config FWRT_PACKAGE_BUSYBOX_SMALL 15 20 bool " Build an extra small busybox" 16 depends on FWRT_PACKAGE_BUSYBOX17 default y18 21 help 19 22 This will keep a few applets out of busybox for the sake of size. 23 24 config FWRT_PACKAGE_BUSYBOX_FULL 25 bool " Build a full-featured busybox" 26 27 config FWRT_PACKAGE_BUSYBOX_CUSTOM 28 bool " Use bbconfig.custom" 29 help 30 Experts only! 31 32 endchoice trunk/freewrt/package/busybox/Makefile
r3239 r3286 20 20 ifneq ($(strip ${FWRT_PACKAGE_BUSYBOX_SMALL}),) 21 21 BBCONFIG_TO_USE= bbconfig.norm 22 else ifneq ($(strip ${FWRT_PACKAGE_BUSYBOX_CUSTOM}),) 23 BBCONFIG_TO_USE= bbconfig.custom 22 24 else 23 25 BBCONFIG_TO_USE= bbconfig.full … … 25 27 26 28 do-configure: 29 @if [[ ! -e ${BBCONFIG_TO_USE} ]]; then \ 30 echo FATAL ERROR: Busybox configuration file not found.; \ 31 exit 1; \ 32 fi 27 33 sed 's@IDIR@${IDIR_BUSYBOX}' ${BBCONFIG_TO_USE} >${WRKBUILD}/.config 28 34 yes '' | \


