diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2007-06-05 03:37:01 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2007-06-05 03:37:01 +0000 |
commit | c8f4767eaffb75a5344f806934af9e782395b681 (patch) | |
tree | 42cc3d0ee83c703f9239c66cf00066a63fe66ae6 | |
parent | 90153e678e31fa614559affd286abb95f409aae7 (diff) | |
download | upstream-c8f4767eaffb75a5344f806934af9e782395b681.tar.gz upstream-c8f4767eaffb75a5344f806934af9e782395b681.tar.bz2 upstream-c8f4767eaffb75a5344f806934af9e782395b681.zip |
Corrected PLLA setting to remove error in BRG at 115k. Removed 2 files not required
SVN-Revision: 7499
-rwxr-xr-x | target/linux/at91-2.6/image/dfboot/src/binary/DataflashBoot-1.05.bin | bin | 11784 -> 0 bytes | |||
-rwxr-xr-x | target/linux/at91-2.6/image/dfboot/src/gcc-softfloat-3.4.5-glibc-2.3.6.sh | 9 | ||||
-rw-r--r-- | target/linux/at91-2.6/image/dfboot/src/main.c | 3 |
3 files changed, 2 insertions, 10 deletions
diff --git a/target/linux/at91-2.6/image/dfboot/src/binary/DataflashBoot-1.05.bin b/target/linux/at91-2.6/image/dfboot/src/binary/DataflashBoot-1.05.bin Binary files differdeleted file mode 100755 index 52262a5d23..0000000000 --- a/target/linux/at91-2.6/image/dfboot/src/binary/DataflashBoot-1.05.bin +++ /dev/null diff --git a/target/linux/at91-2.6/image/dfboot/src/gcc-softfloat-3.4.5-glibc-2.3.6.sh b/target/linux/at91-2.6/image/dfboot/src/gcc-softfloat-3.4.5-glibc-2.3.6.sh deleted file mode 100755 index c1da1af327..0000000000 --- a/target/linux/at91-2.6/image/dfboot/src/gcc-softfloat-3.4.5-glibc-2.3.6.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# This is a Softfloat version of gcc for ARM suitable to compile U-Boot. -# It was compiled using crosstool-0.42 using -export GCCROOT=/usr/local/arm -export GCC_VERSION=3.4.5 -export GLIBC_VERSION=2.3.6 -export CROSS_CHAIN=gcc-$GCC_VERSION-glibc-$GLIBC_VERSION -export PATH=$PATH:$GCCROOT/$CROSS_CHAIN/arm-softfloat-linux-gnu/bin -export CROSS_COMPILE=arm-softfloat-linux-gnu- diff --git a/target/linux/at91-2.6/image/dfboot/src/main.c b/target/linux/at91-2.6/image/dfboot/src/main.c index f2747e3f3f..c0705dec60 100644 --- a/target/linux/at91-2.6/image/dfboot/src/main.c +++ b/target/linux/at91-2.6/image/dfboot/src/main.c @@ -48,7 +48,8 @@ #else #define AT91C_BOOT_DATAFLASH_ADDR 0xC0008000 #endif -#define AT91C_PLLA_VALUE 0x2026BE04 // crystal= 18.432MHz +#define AT91C_PLLA_VALUE 0x237A3E5A // crystal= 18.432MHz - fixes BRG error at 115kbps +//#define AT91C_PLLA_VALUE 0x2026BE04 // crystal= 18.432MHz //#define AT91C_PLLA_VALUE 0x202CBE01 // crystal= 4MHz |