diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-04-03 12:50:13 -0700 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-04-12 13:47:41 -0700 |
commit | 02dc7f4f76e4f6c2cb31207b14f261fec49f98ce (patch) | |
tree | 2f89fbb85686a7946a4e8c966a097fdb2eddff12 /scripts | |
parent | 767f807a613f955ededa172f2ddc39f07ce85585 (diff) |
Update BSPs for Unleashed and U54(MC)
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
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}." |