summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorNathaniel Graff <nathaniel.graff@sifive.com>2019-04-30 16:59:29 +0000
committerGitHub <noreply@github.com>2019-04-30 16:59:29 +0000
commit0c75c6a612a1620bf1ffe82cd5c77ef9a8369045 (patch)
tree1a11e4304b06fbee9c0e525d81c0789530dfba35 /scripts
parenta351dc8d6aaf1a10be9a08e66c78c37126833d6a (diff)
parent8cd756c200cb13c036115a4b851b94f686cf3a3a (diff)
Merge pull request #235 from sifive/u54-rtl
Add Multicore Support
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fixup-dts4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fixup-dts b/scripts/fixup-dts
index adea17d..ddbbd0c 100755
--- a/scripts/fixup-dts
+++ b/scripts/fixup-dts
@@ -71,8 +71,8 @@ fi
if [ `grep -c 'sifive,testram0' ${dts}` -eq 0 ]; then
- # bullet cores have a memory defined already
- if [ `grep -c 'sifive,bullet0' ${dts}` -eq 0 ]; then
+ # bullet and U cores have a memory defined already
+ if [ `grep -c 'sifive,bullet0' ${dts}` -eq 0 -a `grep -c 'SiFive,FU' ${dts}` -eq 0 ]; then
echo "$0: Test memory node not found in ${dts}."