-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flash procedure for inspirationpoint
Summary: As title Test Plan: #doitlive Reviewed By: wangx6f Differential Revision: D46664901 fbshipit-source-id: 07450345e53f362efc5e89136666810b7af8632e
- Loading branch information
1 parent
818311a
commit 0334f04
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
} |