Changeset 2859 in MondoRescue for branches/2.2.9/mindi-busybox/scripts


Ignore:
Timestamp:
Jul 26, 2011, 1:25:42 AM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update to upstream busybox 1.18.5
Location:
branches/2.2.9/mindi-busybox/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/scripts/kconfig/mconf.c

    r2725 r2859  
    257257    "\n");
    258258
    259 static char buf[4096], *bufptr = buf;
     259static char buf[4096*10], *bufptr = buf;
    260260static char input_buf[4096];
    261261static const char filename[] = ".config";
  • branches/2.2.9/mindi-busybox/scripts/mkconfigs

    r2725 r2859  
    4343static const char bbconfig_config[] ALIGN1 ="
    4444
    45 grep '^#\? \?CONFIG_' "$config" \
     45grep -e '^# CONFIG_' -e '^CONFIG_' "$config" \
    4646| sed -e 's/\"/\\\"/g' -e 's/^/"/' -e 's/$/\\n"/'
    4747
     
    6464static const char bbconfig_config_bz2[] ALIGN1 = {"
    6565
    66 grep '^#\? \?CONFIG_' "$config" \
     66grep -e '^# CONFIG_' -e '^CONFIG_' "$config" \
    6767| bzip2 -1 | dd bs=2 skip=1 2>/dev/null \
    6868| od -v -t x1 \
Note: See TracChangeset for help on using the changeset viewer.