Skip to content

Commit

Permalink
Run/Command output in uart is much less loud and scary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Pemberton committed Feb 23, 2019
1 parent 1d610d1 commit 5df6d8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wlutil/br/br.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
KLOGD_ARGS=-n
start() {
echo "FIRESIM RUN START" && /firesim.sh $args && echo "FIRESIM RUN END"
echo "launching firesim workload run/command" && /firesim.sh $args && echo "firesim workload run/command done"
}
case "$$1" in
Expand Down
2 changes: 1 addition & 1 deletion wlutil/br/firesim-overlay/etc/init.d/S99run
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SYSLOGD_ARGS=-n
KLOGD_ARGS=-n

start() {
echo "FIRESIM RUN START" && /firesim.sh && echo "FIRESIM RUN END"
echo "launching firesim workload run/command" && /firesim.sh && echo "firesim workload run/command done"
}

case "$1" in
Expand Down
4 changes: 2 additions & 2 deletions wlutil/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ def stripBrUart(lines):
inBody = False
for l in lines:
if not inBody:
if re.match("FIRESIM RUN START", l):
if re.match("launching firesim workload run/command", l):
inBody = True
else:
if re.match("FIRESIM RUN END", l):
if re.match("firesim workload run/command done", l):
break
stripped += l

Expand Down

0 comments on commit 5df6d8e

Please sign in to comment.