scripts/build/libc/uClibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 03 00:17:54 2010 +0200 (2010-07-03)
branch1.7
changeset 2010 12853e4d2c52
parent 1910 207ad430c254
permissions -rw-r--r--
libc/uClibc: fix snapshots

Snapshots are in a subdir named uClibc, not uClibc-snapshot
(or uClibc-YYYYMMDD either).
(transplanted from b13d0db6fa95795bb663bf674372b58221682dd6)
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@1123
    13
    CT_GetFile "uClibc-${CT_LIBC_VERSION}" ${libc_src}
yann@850
    14
    # uClibc locales
yann@1126
    15
    if [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ]; then
yann@1126
    16
        CT_GetFile "uClibc-locale-030818" ${libc_src}
yann@1126
    17
    fi
yann@850
    18
yann@850
    19
    return 0
yann@850
    20
}
yann@850
    21
yann@2010
    22
libc_uclibc_src_dir() {
yann@2010
    23
    if [    -z "${CT_LIBC_V_snapshot}"      \
yann@2010
    24
         -a -z "${CT_LIBC_V_specific_date}" \
yann@2010
    25
       ]; then
yann@2010
    26
        echo "${CT_SRC_DIR}/uClibc-${CT_LIBC_VERSION}"
yann@2010
    27
    else
yann@2010
    28
        echo "${CT_SRC_DIR}/uClibc"
yann@2010
    29
    fi
yann@2010
    30
}
yann@2010
    31
yann@850
    32
# Extract uClibc
yann@850
    33
do_libc_extract() {
yann@1126
    34
    CT_Extract "uClibc-${CT_LIBC_VERSION}"
yann@2010
    35
    # Don't patch snapshots
yann@2010
    36
    if [    -z "${CT_LIBC_V_snapshot}"      \
yann@2010
    37
         -a -z "${CT_LIBC_V_specific_date}" \
yann@2010
    38
       ]; then
yann@2010
    39
        CT_Patch "uClibc" "${CT_LIBC_VERSION}"
yann@2010
    40
    fi
yann@1126
    41
yann@850
    42
    # uClibc locales
yann@1123
    43
    if [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ]; then
yann@2010
    44
        CT_Pushd "$(libc_uclibc_src_dir)/extra/locale"
yann@1761
    45
        CT_Extract nochdir "uClibc-locale-030818"
yann@1901
    46
        CT_Patch nochdir "uClibc" "locale-030818"
yann@1123
    47
        CT_Popd
yann@1123
    48
    fi
yann@850
    49
yann@850
    50
    return 0
yann@850
    51
}
yann@850
    52
yann@850
    53
# Check that uClibc has been previously configured
yann@850
    54
do_libc_check_config() {
yann@850
    55
    CT_DoStep INFO "Checking C library configuration"
yann@850
    56
yann@850
    57
    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
    58
yann@1247
    59
    if grep -E '^KERNEL_SOURCE=' "${CT_LIBC_UCLIBC_CONFIG_FILE}" >/dev/null 2>&1; then
yann@850
    60
        CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad."
yann@850
    61
        CT_DoLog WARN "I can't guarantee that our little hack will work. Please try to upgrade."
yann@850
    62
    fi
yann@850
    63
yann@850
    64
    CT_DoLog EXTRA "Munging uClibc configuration"
yann@1272
    65
    mungeuClibcConfig "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_CONFIG_DIR}/uClibc.config"
yann@850
    66
yann@850
    67
    CT_EndStep
yann@850
    68
}
yann@850
    69
yann@850
    70
# This functions installs uClibc's headers
yann@850
    71
do_libc_headers() {
yann@1326
    72
    local install_rule
yann@1326
    73
yann@850
    74
    CT_DoStep INFO "Installing C library headers"
yann@850
    75
yann@1678
    76
    # Simply copy files until uClibc has the ability to build out-of-tree
yann@1678
    77
    CT_DoLog EXTRA "Copying sources to build dir"
yann@2010
    78
    CT_DoExecLog ALL cp -av "$(libc_uclibc_src_dir)"            \
yann@1678
    79
                            "${CT_BUILD_DIR}/build-libc-headers"
yann@850
    80
    cd "${CT_BUILD_DIR}/build-libc-headers"
yann@850
    81
yann@850
    82
    # Retrieve the config file
yann@1678
    83
    CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/uClibc.config" .config
yann@850
    84
yann@850
    85
    # uClibc uses the CROSS environment variable as a prefix to the
yann@850
    86
    # compiler tools to use.  Setting it to the empty string forces
yann@850
    87
    # use of the native build host tools, which we need at this
yann@850
    88
    # stage, as we don't have target tools yet.
yann@850
    89
    CT_DoLog EXTRA "Applying configuration"
yann@850
    90
    CT_DoYes "" |CT_DoExecLog ALL make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig
yann@850
    91
yann@850
    92
    CT_DoLog EXTRA "Building headers"
yann@850
    93
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers
yann@850
    94
yann@1326
    95
    if [ "${CT_LIBC_UCLIBC_0_9_30_or_later}" = "y" ]; then
yann@1326
    96
        install_rule=install_headers
yann@1326
    97
    else
yann@1326
    98
        install_rule=install_dev
yann@1326
    99
    fi
yann@1326
   100
yann@850
   101
    CT_DoLog EXTRA "Installing headers"
yann@1331
   102
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" "${install_rule}"
yann@850
   103
yann@850
   104
    CT_EndStep
yann@850
   105
}
yann@850
   106
yann@850
   107
# Build and install start files
yann@850
   108
do_libc_start_files() {
yann@850
   109
    :
yann@850
   110
}
yann@850
   111
yann@850
   112
# This function build and install the full uClibc
yann@850
   113
do_libc() {
yann@850
   114
    CT_DoStep INFO "Installing C library"
yann@850
   115
yann@1678
   116
    # Simply copy files until uClibc has the ability to build out-of-tree
yann@1678
   117
    CT_DoLog EXTRA "Copying sources to build dir"
yann@2010
   118
    CT_DoExecLog ALL cp -av "$(libc_uclibc_src_dir)"    \
yann@1678
   119
                            "${CT_BUILD_DIR}/build-libc"
yann@850
   120
    cd "${CT_BUILD_DIR}/build-libc"
yann@850
   121
yann@850
   122
    # Retrieve the config file
yann@1678
   123
    CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/uClibc.config" .config
yann@850
   124
yann@850
   125
    # uClibc uses the CROSS environment variable as a prefix to the compiler
yann@850
   126
    # tools to use.  The newly built tools should be in our path, so we need
yann@850
   127
    # only give the correct name for them.
yann@850
   128
    # Note about CFLAGS: In uClibc, CFLAGS are generated by Rules.mak,
yann@850
   129
    # depending  on the configuration of the library. That is, they are tailored
yann@850
   130
    # to best fit the target. So it is useless and seems to be a bad thing to
yann@850
   131
    # use LIBC_EXTRA_CFLAGS here.
yann@850
   132
    CT_DoLog EXTRA "Applying configuration"
yann@850
   133
    CT_DoYes "" |CT_DoExecLog ALL               \
yann@850
   134
                 make CROSS=${CT_TARGET}-       \
yann@850
   135
                 PREFIX="${CT_SYSROOT_DIR}/"    \
yann@850
   136
                 oldconfig
yann@850
   137
yann@850
   138
    # We do _not_ want to strip anything for now, in case we specifically
yann@850
   139
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1029
   140
    # /Old/ versions can not build in //
yann@850
   141
    CT_DoLog EXTRA "Building C library"
yann@1029
   142
    CT_DoExecLog ALL                                    \
yann@1029
   143
    make ${CT_LIBC_UCLIBC_PARALLEL:+${PARALLELMFLAGS}}  \
yann@1029
   144
         CROSS=${CT_TARGET}-                            \
yann@1029
   145
         PREFIX="${CT_SYSROOT_DIR}/"                    \
yann@1029
   146
         STRIPTOOL=true                                 \
yann@1029
   147
         ${CT_LIBC_UCLIBC_VERBOSITY}                    \
yann@850
   148
         all
yann@850
   149
yann@1326
   150
    # YEM-FIXME:
yann@1326
   151
    # - we want to install 'runtime' files, eg. lib*.{a,so*}, crti.o and
yann@1326
   152
    #   such files, except the headers as they already are installed
yann@1326
   153
    # - "make install_dev" installs the headers, the crti.o... and the
yann@1326
   154
    #   static libs, but not the dynamic libs
yann@1326
   155
    # - "make install_runtime" installs the dynamic libs only
yann@1326
   156
    # - "make install" calls install_runtime and install_dev
yann@1326
   157
    # - so we're left with re-installing the headers... Sigh...
yann@1326
   158
    #
yann@850
   159
    # We do _not_ want to strip anything for now, in case we specifically
yann@1027
   160
    # asked for a debug toolchain, hence the STRIPTOOL= assignment
yann@1326
   161
    #
yann@1326
   162
    # Note: PARALLELMFLAGS is not usefull for installation.
yann@1326
   163
    #
yann@850
   164
    CT_DoLog EXTRA "Installing C library"
yann@850
   165
    CT_DoExecLog ALL                    \
yann@850
   166
    make CROSS=${CT_TARGET}-            \
yann@850
   167
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@850
   168
         STRIPTOOL=true                 \
yann@850
   169
         ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@850
   170
         install
yann@850
   171
yann@1209
   172
    if [ "${CT_LIBC_UCLIBC_BUILD_CROSS_LDD}" = "y" ]; then
yann@1209
   173
        CT_DoLog EXTRA "Building C library cross-ldd"
yann@1209
   174
        CT_DoExecLog ALL                    \
yann@1209
   175
        make PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1209
   176
             ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@1209
   177
             -C utils hostutils
yann@1209
   178
yann@1209
   179
        CT_DoLog EXTRA "Installing C library cross-ldd"
yann@1209
   180
        CT_DoExecLog ALL install -m 0755 utils/ldd.host "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ldd"
yann@1209
   181
    fi
yann@1209
   182
yann@850
   183
    CT_EndStep
yann@850
   184
}
yann@850
   185
yann@850
   186
# This function is used to install those components needing the final C compiler
yann@850
   187
do_libc_finish() {
yann@1209
   188
    :
yann@850
   189
}
yann@850
   190
yann@850
   191
# Initialises the .config file to sensible values
yann@850
   192
# $1: original file
yann@850
   193
# $2: munged file
yann@850
   194
mungeuClibcConfig() {
yann@850
   195
    src_config_file="$1"
yann@850
   196
    dst_config_file="$2"
yann@850
   197
    munge_file="${CT_BUILD_DIR}/munge-uClibc-config.sed"
yann@850
   198
yann@850
   199
    # Start with a fresh file
yann@850
   200
    rm -f "${munge_file}"
yann@850
   201
    touch "${munge_file}"
yann@850
   202
yann@1674
   203
    # Do it all in a sub-shell, it's easier to redirect output
yann@1674
   204
    (
yann@1674
   205
yann@850
   206
    # Hack our target in the config file.
yann@1750
   207
    case "${CT_ARCH}:${CT_ARCH_BITNESS}" in
thomas@1910
   208
        x86:32)      arch=i386;;
thomas@1910
   209
        x86:64)      arch=x86_64;;
thomas@1910
   210
        sh:32)       arch="sh";;
thomas@1910
   211
        sh:64)       arch="sh64";;
thomas@1910
   212
        blackfin:32) arch="bfin";;
thomas@1910
   213
        *)           arch="${CT_ARCH}";;
yann@1750
   214
    esac
yann@850
   215
    # Also remove stripping: its the responsibility of the
yann@850
   216
    # firmware builder to strip or not.
yann@1674
   217
    cat <<-ENDSED
yann@1674
   218
		s/^(TARGET_.*)=y$/# \\1 is not set/
yann@1750
   219
		s/^# TARGET_${arch} is not set/TARGET_${arch}=y/
yann@1750
   220
		s/^TARGET_ARCH=".*"/TARGET_ARCH="${arch}"/
yann@1674
   221
		s/.*(DOSTRIP).*/# \\1 is not set/
yann@1674
   222
		ENDSED
yann@850
   223
yann@850
   224
    # Ah. We may one day need architecture-specific handler here...
yann@1675
   225
    if [ "${CT_ARCH}" = "arm" ]; then
yann@1675
   226
        # Hack the ARM {E,O}ABI into the config file
yann@1675
   227
        if [ "${CT_ARCH_ARM_EABI}" = "y" ]; then
yann@1675
   228
            cat <<-ENDSED
yann@1675
   229
				s/.*(CONFIG_ARM_OABI).*/# \\1 is not set/
yann@1675
   230
				s/.*(CONFIG_ARM_EABI).*/\\1=y/
yann@1675
   231
				ENDSED
yann@1675
   232
        else
yann@1675
   233
            cat <<-ENDSED
yann@1675
   234
				s/.*(CONFIG_ARM_OABI).*/\\1=y/
yann@1675
   235
				s/.*(CONFIG_ARM_EABI).*/# \\1 is not set/
yann@1675
   236
				ENDSED
yann@1675
   237
        fi
yann@850
   238
    fi
yann@850
   239
yann@850
   240
    # Accomodate for old and new uClibc versions, where the
yann@850
   241
    # way to select between big/little endian has changed
yann@850
   242
    case "${CT_ARCH_BE},${CT_ARCH_LE}" in
yann@1674
   243
        y,) cat <<-ENDSED
yann@1674
   244
				s/.*(ARCH_LITTLE_ENDIAN).*/# \\1 is not set/
yann@1674
   245
				s/.*(ARCH_BIG_ENDIAN).*/\\1=y/
yann@1674
   246
				s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/# \\1 is not set/
yann@1674
   247
				s/.*(ARCH_WANTS_BIG_ENDIAN).*/\\1=y/
yann@1674
   248
				ENDSED
yann@850
   249
        ;;
yann@1674
   250
        ,y) cat <<-ENDSED
yann@1674
   251
				s/.*(ARCH_LITTLE_ENDIAN).*/\\1=y/
yann@1674
   252
				s/.*(ARCH_BIG_ENDIAN).*/# \\1 is not set/
yann@1674
   253
				s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/\\1=y/
yann@1674
   254
				s/.*(ARCH_WANTS_BIG_ENDIAN).*/# \\1 is not set/
yann@1674
   255
				ENDSED
yann@850
   256
        ;;
yann@850
   257
    esac
yann@850
   258
yann@850
   259
    # Accomodate for old and new uClibc version, where the
yann@850
   260
    # way to select between hard/soft float has changed
yann@850
   261
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@1674
   262
        y,) cat <<-ENDSED
yann@1674
   263
				s/^[^_]*(HAS_FPU).*/\\1=y/
yann@1674
   264
				s/.*(UCLIBC_HAS_FPU).*/\\1=y/
yann@1674
   265
				ENDSED
yann@850
   266
            ;;
yann@1674
   267
        ,y) cat <<-ENDSED
yann@1674
   268
				s/^[^_]*(HAS_FPU).*/\\# \\1 is not set/
yann@1674
   269
				s/.*(UCLIBC_HAS_FPU).*/# \\1 is not set/
yann@1674
   270
				ENDSED
yann@850
   271
            ;;
yann@850
   272
    esac
yann@850
   273
yann@850
   274
    # Change paths to work with crosstool-NG
yann@850
   275
    # From http://www.uclibc.org/cgi-bin/viewcvs.cgi?rev=16846&view=rev
yann@850
   276
    #  " we just want the kernel headers, not the whole kernel source ...
yann@850
   277
    #  " so people may need to update their paths slightly
yann@850
   278
    quoted_kernel_source=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/include/?$,,; s,/,\\/,g;')
yann@850
   279
    quoted_headers_dir=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/,\\/,g;')
yann@850
   280
    # CROSS_COMPILER_PREFIX is left as is, as the CROSS parameter is forced on the command line
yann@850
   281
    # DEVEL_PREFIX is left as '/usr/' because it is post-pended to $PREFIX, wich is the correct value of ${PREFIX}/${TARGET}
yann@850
   282
    # Some (old) versions of uClibc use KERNEL_SOURCE (which is _wrong_), and
yann@1674
   283
    # newer versions use KERNEL_HEADERS (which is right).
yann@1674
   284
    cat <<-ENDSED
yann@1674
   285
		s/^DEVEL_PREFIX=".*"/DEVEL_PREFIX="\\/usr\\/"/
yann@1674
   286
		s/^RUNTIME_PREFIX=".*"/RUNTIME_PREFIX="\\/"/
yann@1674
   287
		s/^SHARED_LIB_LOADER_PREFIX=.*/SHARED_LIB_LOADER_PREFIX="\\/lib\\/"/
yann@1674
   288
		s/^KERNEL_SOURCE=".*"/KERNEL_SOURCE="${quoted_kernel_source}"/
yann@1674
   289
		s/^KERNEL_HEADERS=".*"/KERNEL_HEADERS="${quoted_headers_dir}"/
yann@1674
   290
		s/^UCLIBC_DOWNLOAD_PREGENERATED_LOCALE=y/\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE is not set/
yann@1674
   291
		ENDSED
yann@850
   292
yann@850
   293
    if [ "${CT_USE_PIPES}" = "y" ]; then
yann@850
   294
        if grep UCLIBC_EXTRA_CFLAGS extra/Configs/Config.in >/dev/null 2>&1; then
yann@850
   295
            # Good, there is special provision for such things as -pipe!
yann@1674
   296
            cat <<-ENDSED
yann@1674
   297
				s/^(UCLIBC_EXTRA_CFLAGS=".*)"$/\\1 -pipe"/
yann@1674
   298
				ENDSED
yann@850
   299
        else
yann@850
   300
            # Hack our -pipe into WARNINGS, which will be internally incorporated to
yann@850
   301
            # CFLAGS. This a dirty hack, but yet needed
yann@1674
   302
            cat <<-ENDSED
yann@1674
   303
				s/^(WARNINGS=".*)"$/\\1 -pipe"/
yann@1674
   304
				ENDSED
yann@850
   305
        fi
yann@850
   306
    fi
yann@850
   307
yann@1028
   308
    # Locales support
yann@850
   309
    # Note that the two PREGEN_LOCALE and the XLOCALE lines may be missing
yann@850
   310
    # entirely if LOCALE is not set.  If LOCALE was already set, we'll
yann@850
   311
    # assume the user has already made all the appropriate generation
yann@850
   312
    # arrangements.  Note that having the uClibc Makefile download the
yann@850
   313
    # pregenerated locales is not compatible with crosstool; besides,
yann@850
   314
    # crosstool downloads them as part of getandpatch.sh.
yann@1028
   315
    if [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] ; then
yann@1674
   316
        cat <<-ENDSED
yann@1674
   317
			s/^# UCLIBC_HAS_LOCALE is not set/UCLIBC_HAS_LOCALE=y\\
yann@1674
   318
			UCLIBC_PREGENERATED_LOCALE_DATA=y\\
yann@1674
   319
			# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set\\
yann@1674
   320
			# UCLIBC_HAS_XLOCALE is not set/
yann@1674
   321
			ENDSED
yann@1028
   322
    fi
yann@1028
   323
fpasch@1639
   324
    # WCHAR support
fpasch@1639
   325
    if [ "${CT_LIBC_UCLIBC_WCHAR}" = "y" ] ; then
yann@1674
   326
        cat <<-ENDSED
yann@1674
   327
			s/^.*UCLIBC_HAS_WCHAR.*/UCLIBC_HAS_WCHAR=y/
yann@1674
   328
			ENDSED
fpasch@1639
   329
    else
yann@1674
   330
        cat <<-ENDSED
yann@1674
   331
			s/^.*UCLIBC_HAS_WCHAR.*/UCLIBC_HAS_WCHAR=n/
yann@1674
   332
			ENDSED
fpasch@1639
   333
    fi
fpasch@1639
   334
yann@1028
   335
    # Force on options needed for C++ if we'll be making a C++ compiler.
yann@1028
   336
    # I'm not sure locales are a requirement for doing C++... Are they?
yann@850
   337
    if [ "${CT_CC_LANG_CXX}" = "y" ]; then
yann@1674
   338
        cat <<-ENDSED
yann@1674
   339
			s/^# DO_C99_MATH is not set/DO_C99_MATH=y/
yann@1674
   340
			s/^# UCLIBC_CTOR_DTOR is not set/UCLIBC_CTOR_DTOR=y/
yann@1674
   341
			s/^# UCLIBC_HAS_GNU_GETOPT is not set/UCLIBC_HAS_GNU_GETOPT=y/
yann@1674
   342
			ENDSED
yann@850
   343
    fi
yann@850
   344
yann@850
   345
    # Always build the libpthread_db
yann@1674
   346
    cat <<-ENDSED
yann@1674
   347
		s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT=y/
yann@1674
   348
		ENDSED
yann@850
   349
yann@850
   350
    # Force on debug options if asked for
yann@850
   351
    case "${CT_LIBC_UCLIBC_DEBUG_LEVEL}" in
yann@850
   352
      0)
yann@1674
   353
        cat <<-ENDSED
yann@1674
   354
			s/^DODEBUG=y/# DODEBUG is not set/
yann@1674
   355
			s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1674
   356
			s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1674
   357
			s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1674
   358
			s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@1674
   359
			s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1674
   360
			ENDSED
yann@850
   361
        ;;
yann@850
   362
      1)
yann@1674
   363
        cat <<-ENDSED
yann@1674
   364
			s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1674
   365
			s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1674
   366
			s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1674
   367
			s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1674
   368
			s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@1674
   369
			s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1674
   370
			ENDSED
yann@850
   371
        ;;
yann@850
   372
      2)
yann@1674
   373
        cat <<-ENDSED
yann@1674
   374
			s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1674
   375
			s/^# DODEBUG_PT is not set.*/DODEBUG_PT=y/
yann@1674
   376
			s/^# DOASSERTS is not set.*/DOASSERTS=y/
yann@1674
   377
			s/^# SUPPORT_LD_DEBUG is not set.*/SUPPORT_LD_DEBUG=y/
yann@1674
   378
			s/^# SUPPORT_LD_DEBUG_EARLY is not set.*/SUPPORT_LD_DEBUG_EARLY=y/
yann@1674
   379
			s/^# UCLIBC_MALLOC_DEBUGGING is not set/UCLIBC_MALLOC_DEBUGGING=y/
yann@1674
   380
			ENDSED
yann@850
   381
        ;;
yann@850
   382
    esac
yann@1674
   383
yann@1674
   384
    # And now, this is the end
yann@1674
   385
    ) >>"${munge_file}"
yann@1674
   386
yann@850
   387
    sed -r -f "${munge_file}" "${src_config_file}" >"${dst_config_file}"
yann@850
   388
}