[coreboot-gerrit] Change in coreboot[master]: google/parrot: make chromeos.c compilation conditional on CO...

Matt DeVillier (Code Review) gerrit at coreboot.org
Sun May 28 19:36:22 CEST 2017


Matt DeVillier has uploaded a new change for review. ( https://review.coreboot.org/19959 )

Change subject: google/parrot: make chromeos.c compilation conditional on CONFIG_CHROMEOS
......................................................................

google/parrot: make chromeos.c compilation conditional on CONFIG_CHROMEOS

No reason to compile/include chromeos.c for non-ChromeOS builds

Change-Id: Ie8ef1f4c521b2a7308941299f2501073937bdf4a
Signed-off-by: Matt DeVillier <matt.devillier at gmail.com>
---
M src/mainboard/google/parrot/Makefile.inc
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/19959/1

diff --git a/src/mainboard/google/parrot/Makefile.inc b/src/mainboard/google/parrot/Makefile.inc
index 78e5b98..a76bc12 100644
--- a/src/mainboard/google/parrot/Makefile.inc
+++ b/src/mainboard/google/parrot/Makefile.inc
@@ -15,6 +15,6 @@
 
 ramstage-y += ec.c
 
-romstage-y += chromeos.c
-ramstage-y += chromeos.c
+romstage-$(CONFIG_CHROMEOS) += chromeos.c
+ramstage-$(CONFIG_CHROMEOS) += chromeos.c
 romstage-y += gpio.c

-- 
To view, visit https://review.coreboot.org/19959
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie8ef1f4c521b2a7308941299f2501073937bdf4a
Gerrit-PatchSet: 1
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Matt DeVillier <matt.devillier at gmail.com>



More information about the coreboot-gerrit mailing list