scripts/build/libc/uClibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 03 21:11:41 2009 +0000 (2009-01-03)
changeset 1112 c72aecd1a9ef
parent 1052 5581761d6e97
child 1121 4b7ed9da5a21
permissions -rw-r--r--
Get rid of all stuff related to building a /delivery' traball:
- building a delivery tarball has long been broken (since crostool-Ng is installable)
- get rid of implied do_print_filename, that can be mis-leading now tarballs can not be built

/trunk/scripts/build/kernel/bare-metal.sh | 4 0 4 0 ----
/trunk/scripts/build/kernel/linux.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/tools/100-libelf.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/200-sstrip.sh | 11 1 10 0 +----------
/trunk/scripts/build/binutils.sh | 4 0 4 0 ----
/trunk/scripts/build/cc/gcc.sh | 5 0 5 0 -----
/trunk/scripts/build/debug/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/debug/100-dmalloc.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/400-ltrace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/300-gdb.sh | 7 0 7 0 -------
/trunk/scripts/build/debug/500-strace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/200-duma.sh | 4 0 4 0 ----
/trunk/scripts/build/libc/none.sh | 5 0 5 0 -----
/trunk/scripts/build/libc/glibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/libc/uClibc.sh | 6 0 6 0 ------
/trunk/scripts/build/libc/eglibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/gmp.sh | 6 0 6 0 ------
/trunk/scripts/build/mpfr.sh | 6 0 6 0 ------
/trunk/docs/overview.txt | 9 0 9 0 ---------
20 files changed, 1 insertion(+), 128 deletions(-)
yann@850
     1
# This file declares functions to install the uClibc C library
yann@850
     2
# Copyright 2007 Yann E. MORIN
yann@850
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@850
     4
yann@850
     5
# Download uClibc
yann@850
     6
do_libc_get() {
yann@850
     7
    libc_src="http://www.uclibc.org/downloads
yann@850
     8
              http://www.uclibc.org/downloads/snapshots
yann@850
     9
              http://www.uclibc.org/downloads/old-releases"
yann@850
    10
    # For uClibc, we have almost every thing: releases, and snapshots
yann@850
    11
    # for the last month or so. We'll have to deal with svn revisions
yann@850
    12
    # later...
yann@850
    13
    CT_GetFile "${CT_LIBC_FILE}" ${libc_src}
yann@850
    14
    # uClibc locales
yann@850
    15
    [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && CT_GetFile "uClibc-locale-030818" ${libc_src} || true
yann@850
    16
yann@850
    17
    return 0
yann@850
    18
}
yann@850
    19
yann@850
    20
# Extract uClibc
yann@850
    21
do_libc_extract() {
yann@850
    22
    CT_ExtractAndPatch "${CT_LIBC_FILE}"
yann@850
    23
    # uClibc locales
yann@850
    24
    [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && CT_ExtractAndPatch "uClibc-locale-030818" || true
yann@850
    25
yann@850
    26
    return 0
yann@850
    27
}
yann@850
    28
yann@850
    29
# Check that uClibc has been previously configured
yann@850
    30
do_libc_check_config() {
yann@850
    31
    CT_DoStep INFO "Checking C library configuration"
yann@850
    32
yann@850
    33
    CT_TestOrAbort "You did not provide a uClibc config file!" -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" -a -f "${CT_LIBC_UCLIBC_CONFIG_FILE}"
yann@850
    34
yann@850
    35
    if egrep '^KERNEL_SOURCE=' "${CT_LIBC_UCLIBC_CONFIG_FILE}" >/dev/null 2>&1; then
yann@850
    36
        CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad."
yann@850
    37
        CT_DoLog WARN "I can't guarantee that our little hack will work. Please try to upgrade."
yann@850
    38
    fi
yann@850
    39
yann@850
    40
    CT_DoLog EXTRA "Munging uClibc configuration"
yann@850
    41
    mungeuClibcConfig "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_BUILD_DIR}/uClibc.config"
yann@850
    42
yann@850
    43
    CT_EndStep
yann@850
    44
}
yann@850
    45
yann@850
    46
# This functions installs uClibc's headers
yann@850
    47
do_libc_headers() {
yann@850
    48
    # Only need to install bootstrap uClibc headers for gcc-3.0 and above?  Or maybe just gcc-3.3 and above?
yann@850
    49
    # See also http://gcc.gnu.org/PR8180, which complains about the need for this step.
yann@850
    50
    grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_FILE}/ChangeLog" 2>/dev/null || return 0
yann@850
    51
yann@850
    52
    CT_DoStep INFO "Installing C library headers"
yann@850
    53
yann@850
    54
    mkdir -p "${CT_BUILD_DIR}/build-libc-headers"
yann@850
    55
    cd "${CT_BUILD_DIR}/build-libc-headers"
yann@850
    56
yann@850
    57
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@850
    58
    CT_DoLog EXTRA "Copying sources to build dir"
yann@850
    59
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@850
    60
yann@850
    61
    # Retrieve the config file
yann@850
    62
    cp "${CT_BUILD_DIR}/uClibc.config" .config
yann@850
    63
yann@850
    64
    # uClibc uses the CROSS environment variable as a prefix to the
yann@850
    65
    # compiler tools to use.  Setting it to the empty string forces
yann@850
    66
    # use of the native build host tools, which we need at this
yann@850
    67
    # stage, as we don't have target tools yet.
yann@850
    68
    CT_DoLog EXTRA "Applying configuration"
yann@850
    69
    CT_DoYes "" |CT_DoExecLog ALL make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig
yann@850
    70
yann@850
    71
    CT_DoLog EXTRA "Building headers"
yann@850
    72
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers
yann@850
    73
yann@850
    74
    CT_DoLog EXTRA "Installing headers"
yann@1027
    75
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_headers
yann@850
    76
yann@850
    77
    CT_EndStep
yann@850
    78
}
yann@850
    79
yann@850
    80
# Build and install start files
yann@850
    81
do_libc_start_files() {
yann@850
    82
    :
yann@850
    83
}
yann@850
    84
yann@850
    85
# This function build and install the full uClibc
yann@850
    86
do_libc() {
yann@850
    87
    CT_DoStep INFO "Installing C library"
yann@850
    88
yann@850
    89
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@850
    90
    cd "${CT_BUILD_DIR}/build-libc"
yann@850
    91
yann@850
    92
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@850
    93
    CT_DoLog EXTRA "Copying sources to build dir"
yann@850
    94
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@850
    95
yann@850
    96
    # Retrieve the config file
yann@850
    97
    cp "${CT_BUILD_DIR}/uClibc.config" .config
yann@850
    98
yann@850
    99
    # uClibc uses the CROSS environment variable as a prefix to the compiler
yann@850
   100
    # tools to use.  The newly built tools should be in our path, so we need
yann@850
   101
    # only give the correct name for them.
yann@850
   102
    # Note about CFLAGS: In uClibc, CFLAGS are generated by Rules.mak,
yann@850
   103
    # depending  on the configuration of the library. That is, they are tailored
yann@850
   104
    # to best fit the target. So it is useless and seems to be a bad thing to
yann@850
   105
    # use LIBC_EXTRA_CFLAGS here.
yann@850
   106
    CT_DoLog EXTRA "Applying configuration"
yann@850
   107
    CT_DoYes "" |CT_DoExecLog ALL               \
yann@850
   108
                 make CROSS=${CT_TARGET}-       \
yann@850
   109
                 PREFIX="${CT_SYSROOT_DIR}/"    \
yann@850
   110
                 oldconfig
yann@850
   111
yann@850
   112
    # We do _not_ want to strip anything for now, in case we specifically
yann@850
   113
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1029
   114
    # /Old/ versions can not build in //
yann@850
   115
    CT_DoLog EXTRA "Building C library"
yann@1029
   116
    CT_DoExecLog ALL                                    \
yann@1029
   117
    make ${CT_LIBC_UCLIBC_PARALLEL:+${PARALLELMFLAGS}}  \
yann@1029
   118
         CROSS=${CT_TARGET}-                            \
yann@1029
   119
         PREFIX="${CT_SYSROOT_DIR}/"                    \
yann@1029
   120
         STRIPTOOL=true                                 \
yann@1029
   121
         ${CT_LIBC_UCLIBC_VERBOSITY}                    \
yann@850
   122
         all
yann@850
   123
yann@850
   124
    # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want
yann@850
   125
    # to install headers in $SYSROOT/include, thus making only install_runtime.
yann@1027
   126
    # Plus, the headers were previously installed earlier with install_headers,
yann@1027
   127
    # so all should be well. Unfortunately, the install_headers target does not
yann@1027
   128
    # install crti.o and consorts... :-( So reverting to target 'install'.
yann@850
   129
    # Note: PARALLELMFLAGS is not usefull for installation.
yann@850
   130
    # We do _not_ want to strip anything for now, in case we specifically
yann@1027
   131
    # asked for a debug toolchain, hence the STRIPTOOL= assignment
yann@850
   132
    CT_DoLog EXTRA "Installing C library"
yann@850
   133
    CT_DoExecLog ALL                    \
yann@850
   134
    make CROSS=${CT_TARGET}-            \
yann@850
   135
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@850
   136
         STRIPTOOL=true                 \
yann@850
   137
         ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@850
   138
         install
yann@850
   139
yann@850
   140
    CT_EndStep
yann@850
   141
}
yann@850
   142
yann@850
   143
# This function is used to install those components needing the final C compiler
yann@850
   144
do_libc_finish() {
yann@1052
   145
    # Build and install host-side ldd
yann@1052
   146
    CT_DoStep INFO "Finishing C library"
yann@1052
   147
yann@1052
   148
    mkdir -p "${CT_BUILD_DIR}/build-libc-finish"
yann@1052
   149
    cd "${CT_BUILD_DIR}/build-libc-finish"
yann@1052
   150
yann@1052
   151
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@1052
   152
    CT_DoLog EXTRA "Copying sources to build dir"
yann@1052
   153
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@1052
   154
yann@1052
   155
    # Retrieve the config file
yann@1052
   156
    cp "${CT_BUILD_DIR}/uClibc.config" .config
yann@1052
   157
yann@1052
   158
    CT_DoLog EXTRA "Applying configuration"
yann@1052
   159
    CT_DoYes "" |CT_DoExecLog ALL               \
yann@1052
   160
                 make CROSS=${CT_TARGET}-       \
yann@1052
   161
                 PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1052
   162
                 oldconfig
yann@1052
   163
yann@1052
   164
    CT_DoLog EXTRA "Installing C library host utils"
yann@1052
   165
    CT_DoExecLog ALL                    \
yann@1052
   166
    make PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1052
   167
         ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@1052
   168
         -C utils hostutils
yann@1052
   169
    CT_DoExecLog ALL install -m 0755 utils/ldd.host "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ldd"
yann@1052
   170
yann@1052
   171
    CT_EndStep
yann@850
   172
}
yann@850
   173
yann@850
   174
# Initialises the .config file to sensible values
yann@850
   175
# $1: original file
yann@850
   176
# $2: munged file
yann@850
   177
mungeuClibcConfig() {
yann@850
   178
    src_config_file="$1"
yann@850
   179
    dst_config_file="$2"
yann@850
   180
    munge_file="${CT_BUILD_DIR}/munge-uClibc-config.sed"
yann@850
   181
yann@850
   182
    # Start with a fresh file
yann@850
   183
    rm -f "${munge_file}"
yann@850
   184
    touch "${munge_file}"
yann@850
   185
yann@850
   186
    # Hack our target in the config file.
yann@850
   187
    # Also remove stripping: its the responsibility of the
yann@850
   188
    # firmware builder to strip or not.
yann@850
   189
    cat >>"${munge_file}" <<-ENDSED
yann@850
   190
s/^(TARGET_.*)=y$/# \\1 is not set/
yann@850
   191
s/^# TARGET_${CT_KERNEL_ARCH} is not set/TARGET_${CT_KERNEL_ARCH}=y/
yann@850
   192
s/^TARGET_ARCH=".*"/TARGET_ARCH="${CT_KERNEL_ARCH}"/
yann@850
   193
s/.*(DOSTRIP).*/# \\1 is not set/
yann@850
   194
ENDSED
yann@850
   195
yann@850
   196
    # Ah. We may one day need architecture-specific handler here...
yann@850
   197
    # Hack the ARM {E,O}ABI into the config file
yann@850
   198
    if [ "${CT_ARCH_ARM_EABI}" = "y" ]; then
yann@850
   199
        cat >>"${munge_file}" <<-ENDSED
yann@850
   200
s/.*(CONFIG_ARM_OABI).*/# \\1 is not set/
yann@850
   201
s/.*(CONFIG_ARM_EABI).*/\\1=y/
yann@850
   202
ENDSED
yann@850
   203
    else
yann@850
   204
        cat >>"${munge_file}" <<-ENDSED
yann@850
   205
s/.*(CONFIG_ARM_OABI).*/\\1=y/
yann@850
   206
s/.*(CONFIG_ARM_EABI).*/# \\1 is not set/
yann@850
   207
ENDSED
yann@850
   208
    fi
yann@850
   209
yann@850
   210
    # Accomodate for old and new uClibc versions, where the
yann@850
   211
    # way to select between big/little endian has changed
yann@850
   212
    case "${CT_ARCH_BE},${CT_ARCH_LE}" in
yann@850
   213
        y,) cat >>"${munge_file}" <<-ENDSED
yann@850
   214
s/.*(ARCH_LITTLE_ENDIAN).*/# \\1 is not set/
yann@850
   215
s/.*(ARCH_BIG_ENDIAN).*/\\1=y/
yann@850
   216
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/# \\1 is not set/
yann@850
   217
s/.*(ARCH_WANTS_BIG_ENDIAN).*/\\1=y/
yann@850
   218
ENDSED
yann@850
   219
        ;;
yann@850
   220
        ,y) cat >>"${munge_file}" <<-ENDSED
yann@850
   221
s/.*(ARCH_LITTLE_ENDIAN).*/\\1=y/
yann@850
   222
s/.*(ARCH_BIG_ENDIAN).*/# \\1 is not set/
yann@850
   223
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/\\1=y/
yann@850
   224
s/.*(ARCH_WANTS_BIG_ENDIAN).*/# \\1 is not set/
yann@850
   225
ENDSED
yann@850
   226
        ;;
yann@850
   227
    esac
yann@850
   228
yann@850
   229
    # Accomodate for old and new uClibc version, where the
yann@850
   230
    # way to select between hard/soft float has changed
yann@850
   231
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@850
   232
        y,) cat >>"${munge_file}" <<-ENDSED
yann@850
   233
s/^[^_]*(HAS_FPU).*/\\1=y/
yann@850
   234
s/.*(UCLIBC_HAS_FPU).*/\\1=y/
yann@850
   235
ENDSED
yann@850
   236
            ;;
yann@850
   237
        ,y) cat >>"${munge_file}" <<-ENDSED
yann@850
   238
s/^[^_]*(HAS_FPU).*/\\# \\1 is not set/
yann@850
   239
s/.*(UCLIBC_HAS_FPU).*/# \\1 is not set/
yann@850
   240
ENDSED
yann@850
   241
            ;;
yann@850
   242
    esac
yann@850
   243
yann@850
   244
    # Change paths to work with crosstool-NG
yann@850
   245
    # From http://www.uclibc.org/cgi-bin/viewcvs.cgi?rev=16846&view=rev
yann@850
   246
    #  " we just want the kernel headers, not the whole kernel source ...
yann@850
   247
    #  " so people may need to update their paths slightly
yann@850
   248
    quoted_kernel_source=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/include/?$,,; s,/,\\/,g;')
yann@850
   249
    quoted_headers_dir=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/,\\/,g;')
yann@850
   250
    # CROSS_COMPILER_PREFIX is left as is, as the CROSS parameter is forced on the command line
yann@850
   251
    # DEVEL_PREFIX is left as '/usr/' because it is post-pended to $PREFIX, wich is the correct value of ${PREFIX}/${TARGET}
yann@850
   252
    # Some (old) versions of uClibc use KERNEL_SOURCE (which is _wrong_), and
yann@850
   253
    # newer versions use KERNEL_HEADERS (which is right). See:
yann@850
   254
    cat >>"${munge_file}" <<-ENDSED
yann@850
   255
s/^DEVEL_PREFIX=".*"/DEVEL_PREFIX="\\/usr\\/"/
yann@850
   256
s/^RUNTIME_PREFIX=".*"/RUNTIME_PREFIX="\\/"/
yann@850
   257
s/^SHARED_LIB_LOADER_PREFIX=.*/SHARED_LIB_LOADER_PREFIX="\\/lib\\/"/
yann@850
   258
s/^KERNEL_SOURCE=".*"/KERNEL_SOURCE="${quoted_kernel_source}"/
yann@850
   259
s/^KERNEL_HEADERS=".*"/KERNEL_HEADERS="${quoted_headers_dir}"/
yann@850
   260
s/^UCLIBC_DOWNLOAD_PREGENERATED_LOCALE=y/\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE is not set/
yann@850
   261
ENDSED
yann@850
   262
yann@850
   263
    if [ "${CT_USE_PIPES}" = "y" ]; then
yann@850
   264
        if grep UCLIBC_EXTRA_CFLAGS extra/Configs/Config.in >/dev/null 2>&1; then
yann@850
   265
            # Good, there is special provision for such things as -pipe!
yann@850
   266
            cat >>"${munge_file}" <<-ENDSED
yann@850
   267
s/^(UCLIBC_EXTRA_CFLAGS=".*)"$/\\1 -pipe"/
yann@850
   268
ENDSED
yann@850
   269
        else
yann@850
   270
            # Hack our -pipe into WARNINGS, which will be internally incorporated to
yann@850
   271
            # CFLAGS. This a dirty hack, but yet needed
yann@850
   272
            cat >> "${munge_file}" <<-ENDSED
yann@850
   273
s/^(WARNINGS=".*)"$/\\1 -pipe"/
yann@850
   274
ENDSED
yann@850
   275
        fi
yann@850
   276
    fi
yann@850
   277
yann@1028
   278
    # Locales support
yann@850
   279
    # Note that the two PREGEN_LOCALE and the XLOCALE lines may be missing
yann@850
   280
    # entirely if LOCALE is not set.  If LOCALE was already set, we'll
yann@850
   281
    # assume the user has already made all the appropriate generation
yann@850
   282
    # arrangements.  Note that having the uClibc Makefile download the
yann@850
   283
    # pregenerated locales is not compatible with crosstool; besides,
yann@850
   284
    # crosstool downloads them as part of getandpatch.sh.
yann@1028
   285
    if [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] ; then
yann@1028
   286
       cat >>"${munge_file}" <<-ENDSED
yann@1028
   287
s/^# UCLIBC_HAS_LOCALE is not set/UCLIBC_HAS_LOCALE=y\\nUCLIBC_PREGENERATED_LOCALE_DATA=y\\n\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set\\n\\# UCLIBC_HAS_XLOCALE is not
yann@1028
   288
ENDSED
yann@1028
   289
    fi
yann@1028
   290
yann@1028
   291
    # Force on options needed for C++ if we'll be making a C++ compiler.
yann@1028
   292
    # I'm not sure locales are a requirement for doing C++... Are they?
yann@850
   293
    if [ "${CT_CC_LANG_CXX}" = "y" ]; then
yann@850
   294
        cat >>"${munge_file}" <<-ENDSED
yann@850
   295
s/^# DO_C99_MATH is not set/DO_C99_MATH=y/
yann@850
   296
s/^# UCLIBC_CTOR_DTOR is not set/UCLIBC_CTOR_DTOR=y/
yann@850
   297
# Add these three lines when doing C++?
yann@850
   298
s/^# UCLIBC_HAS_WCHAR is not set/UCLIBC_HAS_WCHAR=y/
yann@850
   299
#s/^# UCLIBC_HAS_LOCALE is not set/UCLIBC_HAS_LOCALE=y\\nUCLIBC_PREGENERATED_LOCALE_DATA=y\\n\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set\\n\\# UCLIBC_HAS_XLOCALE is not set/
yann@850
   300
s/^# UCLIBC_HAS_GNU_GETOPT is not set/UCLIBC_HAS_GNU_GETOPT=y/
yann@850
   301
ENDSED
yann@850
   302
    fi
yann@850
   303
yann@850
   304
    # Always build the libpthread_db
yann@850
   305
    cat >>"${munge_file}" <<-ENDSED
yann@850
   306
s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT=y/
yann@850
   307
ENDSED
yann@850
   308
yann@850
   309
    # Force on debug options if asked for
yann@850
   310
    case "${CT_LIBC_UCLIBC_DEBUG_LEVEL}" in
yann@850
   311
      0)
yann@850
   312
        cat >>"${munge_file}" <<-ENDSED
yann@850
   313
s/^DODEBUG=y/# DODEBUG is not set/
yann@850
   314
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@850
   315
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@850
   316
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@850
   317
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@850
   318
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@850
   319
ENDSED
yann@850
   320
        ;;
yann@850
   321
      1)
yann@850
   322
        cat >>"${munge_file}" <<-ENDSED
yann@850
   323
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@850
   324
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@850
   325
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@850
   326
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@850
   327
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@850
   328
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@850
   329
ENDSED
yann@850
   330
        ;;
yann@850
   331
      2)
yann@850
   332
        cat >>"${munge_file}" <<-ENDSED
yann@850
   333
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@850
   334
s/^# DODEBUG_PT is not set.*/DODEBUG_PT=y/
yann@850
   335
s/^# DOASSERTS is not set.*/DOASSERTS=y/
yann@850
   336
s/^# SUPPORT_LD_DEBUG is not set.*/SUPPORT_LD_DEBUG=y/
yann@850
   337
s/^# SUPPORT_LD_DEBUG_EARLY is not set.*/SUPPORT_LD_DEBUG_EARLY=y/
yann@850
   338
s/^# UCLIBC_MALLOC_DEBUGGING is not set/UCLIBC_MALLOC_DEBUGGING=y/
yann@850
   339
ENDSED
yann@850
   340
        ;;
yann@850
   341
    esac
yann@850
   342
    sed -r -f "${munge_file}" "${src_config_file}" >"${dst_config_file}"
yann@850
   343
}