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@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