diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-04-28 22:43:31 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-04-29 07:24:26 +0200 |
commit | 815f4bfbbd96b80ae1f6dc1069300f48b9f7c851 (patch) | |
tree | 3a37fcff96a8165bd926cdf43853f560ae8ec2d0 /src/include | |
parent | cc8171f005bc144bc28ac315196c14eae3e00b83 (diff) |
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')
-rw-r--r-- | src/include/rules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/rules.h b/src/include/rules.h index 3f5262c2f3..1a27fc6fcc 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 |