diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-09-02 09:57:01 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-09-14 07:44:25 +0200 |
commit | a25828dd0eaec09334ccbe05559d0e121e698b0d (patch) | |
tree | 0254832cf9f4a000526810ffd9e7c970a43902bf | |
parent | 14b67f716da16bc132f3e564b0c06c2c9c565753 (diff) | |
download | coreboot-a25828dd0eaec09334ccbe05559d0e121e698b0d.tar.xz |
Provide mechanism to local additions to the build
site-local/ is an optional directory for local additions to the build.
If site-local/Makefile.inc exists it will be parsed and used.
Use it to define VGA option roms, splash screens, extra rules to the
tree...
Change-Id: I0c6ee43ffa40e6c3f193db081ab551ab75bc7478
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/212
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.inc b/Makefile.inc index 167ab5bcc8..4c87bd2716 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -45,6 +45,8 @@ subdirs-y += src/mainboard/$(MAINBOARDDIR) subdirs-$(CONFIG_ARCH_X86) += src/pc80 +subdirs-y += site-local + ####################################################################### # Add source classes and their build options classes-y := ramstage romstage driver smm |