From 0334f044a9c184c1bc8c2d68df626762a1ad49d4 Mon Sep 17 00:00:00 2001 From: Amithash Prasad Date: Mon, 12 Jun 2023 15:33:54 -0700 Subject: [PATCH] Add flash procedure for inspirationpoint Summary: As title Test Plan: #doitlive Reviewed By: wangx6f Differential Revision: D46664901 fbshipit-source-id: 07450345e53f362efc5e89136666810b7af8632e --- .../flash_procedure/flash_inspirationpoint.go | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tools/flashy/flash_procedure/flash_inspirationpoint.go diff --git a/tools/flashy/flash_procedure/flash_inspirationpoint.go b/tools/flashy/flash_procedure/flash_inspirationpoint.go new file mode 100644 index 00000000000..2d02d19d42d --- /dev/null +++ b/tools/flashy/flash_procedure/flash_inspirationpoint.go @@ -0,0 +1,29 @@ +/** + * Copyright 2020-present Facebook. All Rights Reserved. + * + * This program file is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program in a file named COPYING; if not, write to the + * Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +package flash_procedure + +import ( + "github.com/facebook/openbmc/tools/flashy/lib/flash" + "github.com/facebook/openbmc/tools/flashy/lib/step" +) + +func init() { + step.RegisterStep(flash.FlashCp) +}