diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-04-30 16:59:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 16:59:29 +0000 |
commit | 0c75c6a612a1620bf1ffe82cd5c77ef9a8369045 (patch) | |
tree | 1a11e4304b06fbee9c0e525d81c0789530dfba35 /scripts | |
parent | a351dc8d6aaf1a10be9a08e66c78c37126833d6a (diff) | |
parent | 8cd756c200cb13c036115a4b851b94f686cf3a3a (diff) |
Merge pull request #235 from sifive/u54-rtl
Add Multicore Support
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fixup-dts | 4 |
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}." |