From 336350fe603fde4deb793f03d64fa31a99a5acf7 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Mon, 31 May 2021 13:19:43 +0200 Subject: [PATCH] sculpt: enable support for MNT Reform2 --- repos/gems/run/sculpt.run | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/repos/gems/run/sculpt.run b/repos/gems/run/sculpt.run index 5c618242aa..be70eed6ec 100644 --- a/repos/gems/run/sculpt.run +++ b/repos/gems/run/sculpt.run @@ -1,4 +1,4 @@ -if {![have_board pc] && ![have_board imx8q_evk]} { +if {![have_board pc] && ![have_board imx8q_evk] && ![have_board mnt_reform2]} { puts "Platform is unsupported."; exit 0; } @@ -18,8 +18,9 @@ proc config_system_content {} { return {\ } } proc nic_drv {} { - if {[have_board pc]} { return ipxe_nic_drv } - if {[have_board imx8q_evk]} { return fec_nic_drv } + if {[have_board pc]} { return ipxe_nic_drv } + if {[have_board imx8q_evk]} { return fec_nic_drv } + if {[have_board mnt_reform2]} { return fec_nic_drv } puts "\n Run script is not supported on this platform. \n"; exit 0; }