summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/arch/avr32.sh13
-rw-r--r--scripts/build/libc/newlib.sh19
2 files changed, 0 insertions, 32 deletions
diff --git a/scripts/build/arch/avr32.sh b/scripts/build/arch/avr32.sh
deleted file mode 100644
index 2faf8d8..0000000
--- a/scripts/build/arch/avr32.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# Compute AVR32-specific values
-
-CT_DoArchTupleValues() {
- # gcc ./configure flags
- CT_ARCH_WITH_ARCH=
- CT_ARCH_WITH_ABI=
- CT_ARCH_WITH_CPU=
- CT_ARCH_WITH_TUNE=
- CT_ARCH_WITH_FPU=
- CT_ARCH_WITH_FLOAT=
- CT_TARGET_SYS=none
-
-}
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh
index ca00a3f..ba3d969 100644
--- a/scripts/build/libc/newlib.sh
+++ b/scripts/build/libc/newlib.sh
@@ -27,12 +27,6 @@ do_libc_get() {
http://mirrors.kernel.org/sources.redhat.com/newlib
fi
fi # ! custom location
-
- if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then
- CT_GetFile ${LIBC_NEWLIB_AVR_HDRS_BASE} \
- ${LIBC_NEWLIB_AVR_HDRS_EXT} \
- ${LIBC_NEWLIB_AVR_HDRS_URI}
- fi
}
do_libc_extract() {
@@ -44,13 +38,6 @@ do_libc_extract() {
CT_Extract "newlib-${CT_LIBC_VERSION}"
CT_Patch "newlib" "${CT_LIBC_VERSION}"
-
- if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then
- # The avr32header zip file extracts to avr32/*.h
- # Put that in its directory, the same as normal tarballs
- CT_Extract ${LIBC_NEWLIB_AVR_HDRS_BASE} \
- -d ${CT_SRC_DIR}/${LIBC_NEWLIB_AVR_HDRS_BASE}
- fi
}
do_libc_check_config() {
@@ -61,12 +48,6 @@ do_libc_start_files() {
CT_DoStep INFO "Installing C library headers & start files"
CT_DoExecLog ALL cp -a "${CT_SRC_DIR}/newlib-${CT_LIBC_VERSION}/newlib/libc/include/." \
"${CT_HEADERS_DIR}"
- if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then
- CT_DoLog EXTRA "Installing Atmel's AVR32 headers"
- CT_DoExecLog ALL mkdir -p "${CT_PREFIX_DIR}/${CT_TARGET}/include"
- CT_DoExecLog ALL cp -r "${CT_SRC_DIR}/${LIBC_NEWLIB_AVR_HDRS_BASE}/avr32" \
- "${CT_PREFIX_DIR}/${CT_TARGET}/include/"
- fi
CT_EndStep
}