summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@google.com>2017-03-28 16:59:11 +0800
committerchrome-bot <chrome-bot@chromium.org>2017-04-11 20:22:32 -0700
commit629c3964a2bd8a92d61daaef633fc0cc5e65bc10 (patch)
tree47e4ea499f0f51db0d344f9c683a8f38e7fa36b7 /core
parent3f0714c1e29dab5817dfe1aa8733c7235ea85ee4 (diff)
downloadchrome-ec-629c3964a2bd8a92d61daaef633fc0cc5e65bc10.tar.gz
common: Split rwsig parts from rsa.h header
We're going to add more rwsig-related functions, and adding them to rsa.h seems increasingly incorrect. BRANCH=none BUG=b:35587171 TEST=make buildall -j Change-Id: I334c1774ce9a6ed8e219140f65ebe94d653e22d2 Reviewed-on: https://chromium-review.googlesource.com/468708 Commit-Ready: Nicolas Boichat <drinkcat@chromium.org> Tested-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'core')
-rw-r--r--core/cortex-m/ec.lds.S2
-rw-r--r--core/cortex-m0/ec.lds.S2
-rw-r--r--core/minute-ia/ec.lds.S2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/cortex-m/ec.lds.S b/core/cortex-m/ec.lds.S
index 2deedbbd3d..47540ffb4a 100644
--- a/core/cortex-m/ec.lds.S
+++ b/core/cortex-m/ec.lds.S
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
#include "config.h"
-#include "rsa.h"
+#include "rwsig.h"
#define STRINGIFY0(name) #name
#define STRINGIFY(name) STRINGIFY0(name)
diff --git a/core/cortex-m0/ec.lds.S b/core/cortex-m0/ec.lds.S
index c03133b186..a43499ab27 100644
--- a/core/cortex-m0/ec.lds.S
+++ b/core/cortex-m0/ec.lds.S
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
#include "config.h"
-#include "rsa.h"
+#include "rwsig.h"
#define STRINGIFY0(name) #name
#define STRINGIFY(name) STRINGIFY0(name)
diff --git a/core/minute-ia/ec.lds.S b/core/minute-ia/ec.lds.S
index a15ffedaf0..2eacb8db39 100644
--- a/core/minute-ia/ec.lds.S
+++ b/core/minute-ia/ec.lds.S
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
#include "config.h"
-#include "rsa.h"
+#include "rwsig.h"
OUTPUT_FORMAT(BFD_FORMAT, BFD_FORMAT, BFD_FORMAT)
OUTPUT_ARCH(BFD_ARCH)