Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1026
-gerrit
commit 2cae4a41616ca7a7aba6c6db680d94c7bbbd5476
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sat May 12 23:25:23 2012 +0200
crossgcc: Test for m4 and bison
Happened way too often that crossgcc failed
because m4 or bison wasn't installed already.
Change-Id: Ibcca2183edd5db20608015e3898f8fff9a6d11e8
…
[View More]Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/crossgcc/buildgcc | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index f5c06f1..415b408 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -107,6 +107,9 @@ TAR=`searchgnu tar` || exit $?
PATCH=`searchgnu patch` || exit $?
MAKE=`searchgnu make` || exit $?
+searchgnu m4 > /dev/null
+searchgnu bison > /dev/null
+
cleanup()
{
printf "Cleaning up temporary files... "
[View Less]
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1027
-gerrit
commit c9f2672d961f2b3f1cd5a315578529f356f50959
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Tue Jan 10 21:59:08 2012 +0100
abuild: Remove abuild.info hack
abuild used to allow boards to override certain environment
variables using a file called abuild.info.
This isn't used, this isn't needed. Drop it.
…
[View More] Change-Id: Ic93748f602bf0c354ff1f3be25a050e1cb469256
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/abuild/abuild | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 50e9e39..032aba5 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -338,12 +338,6 @@ function build_target
CONFIG=$3
TARCH=$( architecture $VENDOR $MAINBOARD )
- # Allow architecture override in an abuild.info file.
- # This is used for the Motorola Sandpoint, which is not a real target
- # but a skeleton target for the Sandpoint X3.
- [ -r "$ROOT/src/mainboard/${VENDOR}/${MAINBOARD}/abuild.info" ] && \
- source $ROOT/src/mainboard/${VENDOR}/${MAINBOARD}/abuild.info
-
# default setting
CC="${CROSS_COMPILE}gcc"
[View Less]
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1026
-gerrit
commit bbed7b5eadfffdac4ce6ec771eb0148f108dc133
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sat May 12 23:25:23 2012 +0200
crossgcc: Test for m4
Happened way too often that crossgcc failed
because m4 wasn't installed already.
Change-Id: Ibcca2183edd5db20608015e3898f8fff9a6d11e8
Signed-off-by: Patrick …
[View More]Georgi <patrick(a)georgi-clan.de>
---
util/crossgcc/buildgcc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index a7a802e..4d8f89d 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -107,6 +107,8 @@ TAR=`searchgnu tar` || exit $?
PATCH=`searchgnu patch` || exit $?
MAKE=`searchgnu make` || exit $?
+searchgnu m4 > /dev/null
+
cleanup()
{
printf "Cleaning up temporary files... "
[View Less]
On 5/12/12 1:43 AM, ali hagigat wrote:
> If the CPU wb (write back) cache is enabled for the memory range,
> ramstage() is OK. But CPU can not work with UC(uncached) memory type
> in Coreboot code. If i define the whole memory un-cached right before
> jumping to ramstage code ( cbfs_and_run()), CPU does not execute
> C_start.S and it is actually restarted!
> Any clue or idea will be much appreciated.
>
It means your memory is misconfigured, but leaving the cache enabled
…
[View More]hides this effect.
Stefan
[View Less]