Changeset a6a8032 in freewrt


Ignore:
Timestamp:
Aug 2, 2007, 2:24:06 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
3574c62
Parents:
a9754ce
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.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@3378 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package/mksh
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • package/mksh/Config.in

    ra9754ce ra6a8032  
    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
  • package/mksh/Makefile

    ra9754ce ra6a8032  
    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
Note: See TracChangeset for help on using the changeset viewer.