mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-11 22:26:50 +03:00
The general python documentation for the subprocess class recommends that run() be used in all cases that it can handle. What we do in RunAndLog is simple enough that run() is easy to switch to. In fact, looking at this exposed a problem we have today, which is that we had combined stdout and stderr but then looked at both stdout and stderr as if they were separate. Stop combining them. Signed-off-by: Tom Rini <trini@konsulko.com>