diff mbox series

[1/5] runfvp: Add missing conffile include

Message ID 20230717185626.1793017-1-peter.hoyes@arm.com
State New
Headers show
Series [1/5] runfvp: Add missing conffile include | expand

Commit Message

Peter Hoyes July 17, 2023, 6:56 p.m. UTC
From: Peter Hoyes <Peter.Hoyes@arm.com>

Using runfvp without explicitly specifying the fvpconf path currently
fails due to a missing fvp.conffile include.

Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
---
 scripts/runfvp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jon Mason July 18, 2023, 2:41 a.m. UTC | #1
On Mon, 17 Jul 2023 19:56:22 +0100, Peter Hoyes wrote:
> Using runfvp without explicitly specifying the fvpconf path currently
> fails due to a missing fvp.conffile include.
> 
> 

Applied, thanks!

[1/5] runfvp: Add missing conffile include
      commit: cf0baaee0bc8cf9e8f07dc397e479a9b7b6002a0
[2/5] arm/oeqa: Merge all OEFVP*Target classes
      commit: ea762113ce68d2307d7a06b2a5ea3542ff2ed360
[3/5] arm/OEFVPTarget: Add support for model state transitions
      commit: 67dabb0bee3122098cbe79becd973a7b40a0b411
[4/5] arm/oeqa: Convert linuxboot test case into fvp_boot
      commit: 7ed86c025ef88b3992530c9fccd4ab3c8897254b
[5/5] arm/oeqa: Introduce the fvp_devices test suite
      commit: 0b574210aacff865c3adbcaa1fe48d9e1a88f05b

Best regards,
diff mbox series

Patch

diff --git a/scripts/runfvp b/scripts/runfvp
index c2e536c8..0ca3a1b5 100755
--- a/scripts/runfvp
+++ b/scripts/runfvp
@@ -14,7 +14,7 @@  logger = logging.getLogger("RunFVP")
 libdir = pathlib.Path(__file__).parents[1] / "meta-arm" / "lib"
 sys.path.insert(0, str(libdir))
 
-from fvp import terminal, runner
+from fvp import conffile, terminal, runner
 
 def parse_args(arguments):
     import argparse