summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorJeremy Laine <jeremy.laine@m4x.org>2008-04-30 12:28:01 +0000
committerJeremy Laine <jeremy.laine@m4x.org>2008-04-30 12:28:01 +0000
commit6d0ef5690afbcb6a9ed3a9b65a059a8fd7828688 (patch)
tree7e78f47c3a04733459f32a0dae242e160d629a07 /packages
parent0fb57dc6ed253ba7ad26e00a334ff06a56a5b632 (diff)
parente1d79cb2dd8cd4b6bef47fd5bb21d6765e61e8bc (diff)
merge of '95cefda8965d9f34e429a5b0e01d5c392825e133'
and 'c8c6f8c33c61af0056076c21f8e84da83a85d8d8'
Diffstat (limited to 'packages')
-rw-r--r--packages/binutils/binutils-avr32.inc31
-rw-r--r--packages/gdb/gdb-avr32.inc32
2 files changed, 63 insertions, 0 deletions
diff --git a/packages/binutils/binutils-avr32.inc b/packages/binutils/binutils-avr32.inc
new file mode 100644
index 0000000000..e74fb5132a
--- /dev/null
+++ b/packages/binutils/binutils-avr32.inc
@@ -0,0 +1,31 @@
+# Extra tasks required when using Atmel's patches to binutils
+# See http://avr32linux.org/twiki/bin/view/Main/BinutilsPatches for
+# more information
+
+
+do_avr32_reconf () {
+ if test ${TARGET_ARCH} == avr32; then
+ (cd ${S} && autoconf-2.13) || die "Error running autoconf"
+ for dir in bfd opcodes binutils ld; do
+ (cd "${S}/$dir" &&
+ aclocal-1.9 &&
+ autoconf &&
+ automake-1.9 &&
+ autoheader) || die "Error reconfiguring $dir"
+ done
+ fi
+}
+
+
+do_avr32_configure_bfd () {
+ if test ${TARGET_ARCH} == avr32; then
+ (cd ${B} && make configure-bfd) || die "Error running 'make configure-bfd'"
+ (cd ${B}/bfd && make headers) || die "Error running 'make headers'"
+ fi
+}
+
+
+
+addtask avr32_reconf after do_patch before do_configure
+addtask avr32_configure_bfd after do_configure before do_compile
+
diff --git a/packages/gdb/gdb-avr32.inc b/packages/gdb/gdb-avr32.inc
new file mode 100644
index 0000000000..0c0255fdb2
--- /dev/null
+++ b/packages/gdb/gdb-avr32.inc
@@ -0,0 +1,32 @@
+# Perform tasks required to use Atmel's AVR32 patches
+# See http://avr32linux.org/twiki/bin/view/Main/GDBPatches for more info
+
+
+do_avr32_reconf () {
+ if test ${TARGET_ARCH} == "avr32"; then
+ (cd ${S} && autoconf) || \
+ die "failure running autoconf in top-level gdb"
+
+ (cd ${S}/bfd && autoreconf) || \
+ die "failure running autoreconf in bfd/"
+
+ (cd ${S}/opcodes && autoreconf) || \
+ die "failure running autoreconf in opcodes/"
+ fi
+
+}
+
+
+
+do_avr32_configure_bfd () {
+ if test ${TARGET_ARCH} == "avr32"; then
+ (cd ${B} && make configure-bfd) || die "Error running configure-bfd"
+ (cd ${B}/bfd && make headers) || \
+ die "error running 'make headers' in bfd"
+ fi
+}
+
+
+addtask avr32_reconf after do_patch before do_configure
+addtask avr32_configure_bfd after do_configure before do_compile
+