scripts/build/libc/eglibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 30 23:05:28 2011 +0200 (2011-05-30)
changeset 2496 cc9b84a83b34
parent 2495 98b02f85db29
child 2504 3fc114996b20
permissions -rw-r--r--
glibc: properly handle internal addons

Some addons are bundled with glibc/eglibc, so we should not try to
download and extract them.

This is done as thus:
- at download time:
- if the add-on download fails, keep going;
- at extract time:
- if the addon is present in the source tree, ignore it;
- if the addon is missing in the source tree:
- if the archive is present, extract it;
- if the archive is missing, bail out.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@850
     1
# eglibc build functions (initially by Thomas JOURDAN).
yann@850
     2
yann@2270
     3
# Add the definitions common to glibc and eglibc
yann@2483
     4
#   do_libc_extract
yann@2270
     5
#   do_libc_start_files
yann@2270
     6
#   do_libc
yann@2270
     7
#   do_libc_finish
yann@2270
     8
#   do_libc_add_ons_list
yann@2483
     9
#   do_libc_min_kernel_config
yann@2270
    10
. "${CT_LIB_DIR}/scripts/build/libc/glibc-eglibc.sh-common"
yann@2270
    11
yann@2495
    12
# Download glibc
yann@2495
    13
# eglibc is only available through subversion, there are no
yann@2495
    14
# snapshots available.
yann@2495
    15
do_libc_get() {
yann@2495
    16
    local addon
yann@2495
    17
    local svn_base="svn://svn.eglibc.org"
yann@850
    18
yann@850
    19
    case "${CT_LIBC_VERSION}" in
yann@2495
    20
        trunk)  svn_base+="/trunk";;
yann@2495
    21
        *)      svn_base+="/branches/eglibc-${CT_LIBC_VERSION}";;
yann@850
    22
    esac
yann@850
    23
yann@2495
    24
    CT_GetSVN "eglibc-${CT_LIBC_VERSION}"   \
yann@2495
    25
              "${svn_base}/libc"            \
yann@2495
    26
              "${CT_EGLIBC_REVISION:-HEAD}"
yann@850
    27
yann@2495
    28
    for addon in $(do_libc_add_ons_list " "); do
yann@2496
    29
        # NPTL addon is not to be downloaded, in any case
yann@2496
    30
        [ "${addon}" = "nptl" ] && continue || true
yann@2496
    31
        if ! CT_GetSVN "eglibc-${addon}-${CT_LIBC_VERSION}" \
yann@2496
    32
                       "${svn_base}/${addon}"               \
yann@2496
    33
                       "${CT_EGLIBC_REVISION:-HEAD}"
yann@2496
    34
        then
yann@2496
    35
            # Some add-ons are bundled with the main sources
yann@2496
    36
            # so failure to download them is expected
yann@2496
    37
            CT_DoLog DEBUG "Addon '${addon}' could not be downloaded."
yann@2496
    38
            CT_DoLog DEBUG "We'll see later if we can find it in the source tree"
yann@2496
    39
        fi
yann@850
    40
    done
yann@850
    41
}
yann@850
    42
avrac@1569
    43
# Copy user provided eglibc configuration file if provided
yann@850
    44
do_libc_check_config() {
avrac@1569
    45
    if [ "${CT_EGLIBC_CUSTOM_CONFIG}" != "y" ]; then
avrac@1569
    46
        return 0
avrac@1569
    47
    fi
avrac@1569
    48
avrac@1569
    49
    CT_DoStep INFO "Checking C library configuration"
avrac@1569
    50
avrac@1569
    51
    CT_TestOrAbort "You did not provide an eglibc config file!" \
avrac@1569
    52
        -n "${CT_EGLIBC_OPTION_GROUPS_FILE}" -a \
avrac@1569
    53
        -f "${CT_EGLIBC_OPTION_GROUPS_FILE}"
avrac@1569
    54
avrac@1569
    55
    CT_DoExecLog ALL cp "${CT_EGLIBC_OPTION_GROUPS_FILE}" "${CT_CONFIG_DIR}/eglibc.config"
avrac@1569
    56
avrac@1569
    57
    # NSS configuration
avrac@1569
    58
    if grep -E '^OPTION_EGLIBC_NSSWITCH[[:space:]]*=[[:space:]]*n' "${CT_EGLIBC_OPTION_GROUPS_FILE}" >/dev/null 2>&1; then
avrac@1569
    59
        CT_DoLog DEBUG "Using fixed-configuration nsswitch facility"
avrac@1569
    60
avrac@1569
    61
        if [ "${CT_EGLIBC_BUNDLED_NSS_CONFIG}" = "y" ]; then
avrac@1569
    62
            nss_config="${CT_SRC_DIR}/eglibc-${CT_LIBC_VERSION}/nss/fixed-nsswitch.conf"
avrac@1569
    63
        else
avrac@1569
    64
            nss_config="${CT_EGLIBC_NSS_CONFIG_FILE}"
avrac@1569
    65
        fi
avrac@1569
    66
        CT_TestOrAbort "NSS config file not found!" -n "${nss_config}" -a -f "${nss_config}"
avrac@1569
    67
avrac@1569
    68
        CT_DoExecLog ALL cp "${nss_config}" "${CT_CONFIG_DIR}/nsswitch.config"
avrac@1569
    69
        echo "OPTION_EGLIBC_NSSWITCH_FIXED_CONFIG = ${CT_CONFIG_DIR}/nsswitch.config" \
avrac@1569
    70
            >> "${CT_CONFIG_DIR}/eglibc.config"
avrac@1569
    71
avrac@1569
    72
        if [ "${CT_EGLIBC_BUNDLED_NSS_FUNCTIONS}" = "y" ]; then
avrac@1569
    73
            nss_functions="${CT_SRC_DIR}/eglibc-${CT_LIBC_VERSION}/nss/fixed-nsswitch.functions"
avrac@1569
    74
        else
avrac@1569
    75
            nss_functions="${CT_EGLIBC_NSS_FUNCTIONS_FILE}"
avrac@1569
    76
        fi
avrac@1569
    77
        CT_TestOrAbort "NSS functions file not found!" -n "${nss_functions}" -a -f "${nss_functions}"
avrac@1569
    78
avrac@1569
    79
        CT_DoExecLog ALL cp "${nss_functions}" "${CT_CONFIG_DIR}/nsswitch.functions"
avrac@1569
    80
        echo "OPTION_EGLIBC_NSSWITCH_FIXED_FUNCTIONS = ${CT_CONFIG_DIR}/nsswitch.functions" \
avrac@1569
    81
            >> "${CT_CONFIG_DIR}/eglibc.config"
avrac@1569
    82
    else
avrac@1569
    83
        CT_DoLog DEBUG "Using full-blown nsswitch facility"
avrac@1569
    84
    fi
avrac@1569
    85
avrac@1569
    86
    CT_EndStep
yann@850
    87
}