Changeset 3378

Show
Ignore:
Timestamp:
08/02/07 14:24:06 (1 year ago)
Author:
tg
Message:

make a full-featured mksh (which benefits from locale support even) default
you can still choose to save a few K by disabling the option, as usual, but
people will want the vi editing mode etc.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/mksh/Config.in

    r3261 r3378  
    1717          http://mirbsd.de/mksh 
    1818 
    19 config FWRT_PACKAGE_MKSH_SMALL 
    20         bool "  Build an extra small mksh
     19config FWRT_PACKAGE_MKSH_FULL 
     20        bool "  Include all features
    2121        depends FWRT_PACKAGE_MKSH 
    2222        default y 
    2323        help 
    24           Enable this to remove a few functions from mksh to make it smaller. 
     24          Disable this to remove a few functions from mksh to make it smaller. 
    2525          Ideal for embedded systems. However, be aware you will lose some 
    2626          functionality you'd otherwise expect, among these is the vi command 
  • trunk/freewrt/package/mksh/Makefile

    r3357 r3378  
    1111$(eval $(call PKG_template,MKSH,mksh,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 
    1212 
    13 ifeq ($(strip ${FWRT_PACKAGE_MKSH_SMALL}),y
     13ifeq ($(strip ${FWRT_PACKAGE_MKSH_FULL}),
    1414TCPPFLAGS+=             -DMKSH_SMALL=1 
    1515endif