2008-08-11 12:22:47 +00:00
|
|
|
# eglibc build functions (initially by Thomas JOURDAN).
|
|
|
|
|
2011-01-17 22:04:37 +00:00
|
|
|
# Add the definitions common to glibc and eglibc
|
2011-05-29 17:24:41 +00:00
|
|
|
# do_libc_extract
|
2011-01-17 22:04:37 +00:00
|
|
|
# do_libc_start_files
|
|
|
|
# do_libc
|
|
|
|
# do_libc_finish
|
|
|
|
# do_libc_add_ons_list
|
2011-05-29 17:24:41 +00:00
|
|
|
# do_libc_min_kernel_config
|
2011-01-17 22:04:37 +00:00
|
|
|
. "${CT_LIB_DIR}/scripts/build/libc/glibc-eglibc.sh-common"
|
|
|
|
|
2008-08-11 12:22:47 +00:00
|
|
|
# Download eglibc repository
|
|
|
|
do_eglibc_get() {
|
|
|
|
CT_HasOrAbort svn
|
|
|
|
|
|
|
|
case "${CT_LIBC_VERSION}" in
|
|
|
|
trunk) svn_url="svn://svn.eglibc.org/trunk";;
|
|
|
|
*) svn_url="svn://svn.eglibc.org/branches/eglibc-${CT_LIBC_VERSION}";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "${CT_EGLIBC_CHECKOUT}" in
|
|
|
|
y) svn_action="checkout";;
|
|
|
|
*) svn_action="export --force";;
|
|
|
|
esac
|
|
|
|
|
2010-11-09 09:44:29 +00:00
|
|
|
CT_DoExecLog ALL svn ${svn_action} -r "${CT_EGLIBC_REVISION:-HEAD}" "${svn_url}" "$(pwd)"
|
2008-08-11 12:22:47 +00:00
|
|
|
|
|
|
|
# Compress eglibc
|
2009-01-04 22:17:53 +00:00
|
|
|
CT_DoExecLog ALL mv libc "eglibc-${CT_LIBC_VERSION}"
|
|
|
|
CT_DoExecLog ALL tar cjf "eglibc-${CT_LIBC_VERSION}.tar.bz2" "eglibc-${CT_LIBC_VERSION}"
|
2008-08-11 12:22:47 +00:00
|
|
|
|
|
|
|
# Compress linuxthreads, localedef and ports
|
|
|
|
# Assign them the name the way ct-ng like it
|
|
|
|
for addon in linuxthreads localedef ports; do
|
2009-01-04 22:17:53 +00:00
|
|
|
CT_DoExecLog ALL mv "${addon}" "eglibc-${addon}-${CT_LIBC_VERSION}"
|
|
|
|
CT_DoExecLog ALL tar cjf "eglibc-${addon}-${CT_LIBC_VERSION}.tar.bz2" "eglibc-${addon}-${CT_LIBC_VERSION}"
|
2008-08-11 12:22:47 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Download glibc
|
|
|
|
do_libc_get() {
|
|
|
|
# eglibc is only available through subversion, there are no
|
|
|
|
# snapshots available. Moreover, addons will be downloaded
|
|
|
|
# simultaneously.
|
|
|
|
|
|
|
|
# build filename
|
2009-01-04 22:17:53 +00:00
|
|
|
eglibc="eglibc-${CT_LIBC_VERSION}.tar.bz2"
|
2008-08-11 12:22:47 +00:00
|
|
|
eglibc_linuxthreads="${CT_LIBC}-linuxthreads-${CT_LIBC_VERSION}.tar.bz2"
|
|
|
|
eglibc_localedef="${CT_LIBC}-localedef-${CT_LIBC_VERSION}.tar.bz2"
|
|
|
|
eglibc_ports="${CT_LIBC}-ports-${CT_LIBC_VERSION}.tar.bz2"
|
|
|
|
|
|
|
|
# Check if every tarballs are already present
|
2009-07-27 20:16:07 +00:00
|
|
|
if [ -f "${CT_TARBALLS_DIR}/${eglibc}" \
|
|
|
|
-a -f "${CT_TARBALLS_DIR}/${eglibc_linuxthreads}" \
|
|
|
|
-a -f "${CT_TARBALLS_DIR}/${eglibc_localedef}" \
|
|
|
|
-a -f "${CT_TARBALLS_DIR}/${eglibc_ports}" \
|
|
|
|
]; then
|
2008-08-11 12:22:47 +00:00
|
|
|
CT_DoLog DEBUG "Already have 'eglibc-${CT_LIBC_VERSION}'"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2009-07-27 20:16:07 +00:00
|
|
|
if [ -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc}" \
|
|
|
|
-a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_linuxthreads}" \
|
|
|
|
-a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_localedef}" \
|
|
|
|
-a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_ports}" \
|
2009-09-11 22:11:12 +00:00
|
|
|
-a "${CT_FORCE_DOWNLOAD}" != "y" \
|
2009-07-27 20:16:07 +00:00
|
|
|
]; then
|
2008-08-17 14:13:00 +00:00
|
|
|
CT_DoLog DEBUG "Got 'eglibc-${CT_LIBC_VERSION}' from local storage"
|
2008-08-11 12:22:47 +00:00
|
|
|
for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do
|
2008-08-12 09:14:55 +00:00
|
|
|
CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}" "${CT_TARBALLS_DIR}/${file}"
|
2008-08-11 12:22:47 +00:00
|
|
|
done
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Not found locally, try from the network
|
2008-08-12 09:14:55 +00:00
|
|
|
CT_DoLog EXTRA "Retrieving 'eglibc-${CT_LIBC_VERSION}'"
|
2008-09-22 19:51:29 +00:00
|
|
|
|
|
|
|
CT_MktempDir tmp_dir
|
|
|
|
CT_Pushd "${tmp_dir}"
|
|
|
|
|
2008-08-11 12:22:47 +00:00
|
|
|
do_eglibc_get
|
2008-09-22 19:51:29 +00:00
|
|
|
CT_DoLog DEBUG "Moving 'eglibc-${CT_LIBC_VERSION}' to tarball directory"
|
|
|
|
for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do
|
|
|
|
CT_DoExecLog ALL mv -f "${file}" "${CT_TARBALLS_DIR}"
|
|
|
|
done
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
|
|
|
|
# Remove source files
|
|
|
|
CT_DoExecLog ALL rm -rf "${tmp_dir}"
|
2008-08-11 12:22:47 +00:00
|
|
|
|
|
|
|
if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
|
2008-08-12 09:14:55 +00:00
|
|
|
CT_DoLog EXTRA "Saving 'eglibc-${CT_LIBC_VERSION}' to local storage"
|
2008-08-11 12:22:47 +00:00
|
|
|
for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do
|
2008-08-12 09:14:55 +00:00
|
|
|
CT_DoExecLog ALL mv -f "${CT_TARBALLS_DIR}/${file}" "${CT_LOCAL_TARBALLS_DIR}"
|
|
|
|
CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}" "${CT_TARBALLS_DIR}/${file}"
|
2008-08-11 12:22:47 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2009-10-09 14:22:09 +00:00
|
|
|
# Copy user provided eglibc configuration file if provided
|
2008-08-11 12:22:47 +00:00
|
|
|
do_libc_check_config() {
|
2009-10-09 14:22:09 +00:00
|
|
|
if [ "${CT_EGLIBC_CUSTOM_CONFIG}" != "y" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
CT_DoStep INFO "Checking C library configuration"
|
|
|
|
|
|
|
|
CT_TestOrAbort "You did not provide an eglibc config file!" \
|
|
|
|
-n "${CT_EGLIBC_OPTION_GROUPS_FILE}" -a \
|
|
|
|
-f "${CT_EGLIBC_OPTION_GROUPS_FILE}"
|
|
|
|
|
|
|
|
CT_DoExecLog ALL cp "${CT_EGLIBC_OPTION_GROUPS_FILE}" "${CT_CONFIG_DIR}/eglibc.config"
|
|
|
|
|
|
|
|
# NSS configuration
|
|
|
|
if grep -E '^OPTION_EGLIBC_NSSWITCH[[:space:]]*=[[:space:]]*n' "${CT_EGLIBC_OPTION_GROUPS_FILE}" >/dev/null 2>&1; then
|
|
|
|
CT_DoLog DEBUG "Using fixed-configuration nsswitch facility"
|
|
|
|
|
|
|
|
if [ "${CT_EGLIBC_BUNDLED_NSS_CONFIG}" = "y" ]; then
|
|
|
|
nss_config="${CT_SRC_DIR}/eglibc-${CT_LIBC_VERSION}/nss/fixed-nsswitch.conf"
|
|
|
|
else
|
|
|
|
nss_config="${CT_EGLIBC_NSS_CONFIG_FILE}"
|
|
|
|
fi
|
|
|
|
CT_TestOrAbort "NSS config file not found!" -n "${nss_config}" -a -f "${nss_config}"
|
|
|
|
|
|
|
|
CT_DoExecLog ALL cp "${nss_config}" "${CT_CONFIG_DIR}/nsswitch.config"
|
|
|
|
echo "OPTION_EGLIBC_NSSWITCH_FIXED_CONFIG = ${CT_CONFIG_DIR}/nsswitch.config" \
|
|
|
|
>> "${CT_CONFIG_DIR}/eglibc.config"
|
|
|
|
|
|
|
|
if [ "${CT_EGLIBC_BUNDLED_NSS_FUNCTIONS}" = "y" ]; then
|
|
|
|
nss_functions="${CT_SRC_DIR}/eglibc-${CT_LIBC_VERSION}/nss/fixed-nsswitch.functions"
|
|
|
|
else
|
|
|
|
nss_functions="${CT_EGLIBC_NSS_FUNCTIONS_FILE}"
|
|
|
|
fi
|
|
|
|
CT_TestOrAbort "NSS functions file not found!" -n "${nss_functions}" -a -f "${nss_functions}"
|
|
|
|
|
|
|
|
CT_DoExecLog ALL cp "${nss_functions}" "${CT_CONFIG_DIR}/nsswitch.functions"
|
|
|
|
echo "OPTION_EGLIBC_NSSWITCH_FIXED_FUNCTIONS = ${CT_CONFIG_DIR}/nsswitch.functions" \
|
|
|
|
>> "${CT_CONFIG_DIR}/eglibc.config"
|
|
|
|
else
|
|
|
|
CT_DoLog DEBUG "Using full-blown nsswitch facility"
|
|
|
|
fi
|
|
|
|
|
|
|
|
CT_EndStep
|
2008-08-11 12:22:47 +00:00
|
|
|
}
|