Changeset 3886
- Timestamp:
- 10/17/09 23:59:19 (3 years ago)
- Files:
-
- 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/Config.in
r3885 r3886 31 31 32 32 To generate it: make package=busybox patch; cd build*/w-busybox*/busy* 33 and make menuconfig, then use the .config file created. Be sure to 34 change the prefix setting line to 'CONFIG_PREFIX="@IDIR@"' though! 33 and make menuconfig, then use the .config file created. 35 34 36 35 endchoice trunk/freewrt/package/busybox/Makefile
r3849 r3886 20 20 ifneq ($(strip ${FWRT_PACKAGE_BUSYBOX_SMALL}),) 21 21 BBCONFIG_TO_USE= bbconfig.norm 22 BBCONFIG_CREATE= 1 22 23 else ifneq ($(strip ${FWRT_PACKAGE_BUSYBOX_CUSTOM}),) 23 24 BBCONFIG_TO_USE= bbconfig.custom 25 BBCONFIG_CREATE= 0 # prevent bbconfig.ipv6 from being appended 24 26 else 25 27 BBCONFIG_TO_USE= bbconfig.full 28 BBCONFIG_CREATE= 1 26 29 endif 27 30 … … 31 34 exit 1; \ 32 35 fi 33 sed 's@IDIR@${IDIR_BUSYBOX}' ${BBCONFIG_TO_USE} >${WRKBUILD}/.config 34 ifeq ($(FWRT_IPV6),y) 36 grep -v '^CONFIG_PREFIX=' ${BBCONFIG_TO_USE} >${WRKBUILD}/.config 37 echo 'CONFIG_PREFIX=${IDIR_BUSYBOX}' >>${WRKBUILD}/.config 38 ifeq ($(FWRT_IPV6)$(BBCONFIG_CREATE},y1) 35 39 cat bbconfig.ipv6 >>${WRKBUILD}/.config 36 40 endif


