summaryrefslogtreecommitdiffstats
path: root/src/include/rules.h
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2015-04-28 22:43:31 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-04-29 07:24:26 +0200
commit815f4bfbbd96b80ae1f6dc1069300f48b9f7c851 (patch)
tree3a37fcff96a8165bd926cdf43853f560ae8ec2d0 /src/include/rules.h
parentcc8171f005bc144bc28ac315196c14eae3e00b83 (diff)
downloadcoreboot-815f4bfbbd96b80ae1f6dc1069300f48b9f7c851.tar.gz
coreboot-815f4bfbbd96b80ae1f6dc1069300f48b9f7c851.tar.bz2
coreboot-815f4bfbbd96b80ae1f6dc1069300f48b9f7c851.zip
Use __ROMSTAGE__ to denote romstage
There were some remaining places that used __PRE_RAM__ for romstage, while it really means 'bootblock or romstage'. Change-Id: Id9ba0486ee56ea4a27425d826a9256cc20f5b518 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10020 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/include/rules.h')
-rw-r--r--src/include/rules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/rules.h b/src/include/rules.h
index 3f5262c2f3fb..1a27fc6fcc2a 100644
--- a/src/include/rules.h
+++ b/src/include/rules.h
@@ -31,7 +31,7 @@
#define ENV_SECMON 0
#define ENV_VERSTAGE 0
-#elif defined(__PRE_RAM__)
+#elif defined(__ROMSTAGE__)
#define ENV_BOOTBLOCK 0
#define ENV_ROMSTAGE 1
#define ENV_RAMSTAGE 0