Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Unified Diff: firmware/include/sysincludes.h

Issue 2862019: Provide a means of including BIOS specific definitions when required. (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: Modify attributes fieldi size to comply with msc limitations Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | firmware/stub/biosincludes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/include/sysincludes.h
diff --git a/firmware/include/sysincludes.h b/firmware/include/sysincludes.h
index 758e5820a2f860e9a9a5bf51390b42d517c02b7f..13c0914a84f4354d1732cdf596499d41246ba9c1 100644
--- a/firmware/include/sysincludes.h
+++ b/firmware/include/sysincludes.h
@@ -15,6 +15,8 @@
#ifndef VBOOT_REFERENCE_SYSINCLUDES_H_
#define VBOOT_REFERENCE_SYSINCLUDES_H_
+#ifdef CHROMEOS_ENVIRONMENT
+
#include <inttypes.h> /* For PRIu64 */
#include <stdint.h>
#include <stdlib.h>
@@ -24,5 +26,8 @@
#include <memory.h>
#endif
+#else
+#include "stub/biosincludes.h"
+#endif
#endif /* VBOOT_REFERENCE_SYSINCLUDES_H_ */
« no previous file with comments | « Makefile ('k') | firmware/stub/biosincludes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698