diff options
author | Nico Huber <nico.huber@secunet.com> | 2016-10-09 12:12:52 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2016-10-29 01:35:03 +0200 |
commit | ef405a2c04d2eac47bc6e28de8a4040ed9e0c611 (patch) | |
tree | 801e32360d19df80bee29533f1b1d716b260260a | |
parent | e09f8acdade523bc8b2ea400acf46b8cca6e4478 (diff) |
Set up 3rdparty/libgfxinit
`libgfxinit` is a SPARK library for graphics modesetting. It supports
Intel integrated graphics only, strictly speaking, the Core i processor
line.
Change-Id: Idf4b0e5fbf37a5d974075b2e44d1fa16dc428da3
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/16949
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | 3rdparty/libgfxinit | 0 | ||||
-rw-r--r-- | Makefile.inc | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules index c545ccdef4..c3270e6ae2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,3 +18,6 @@ [submodule "libhwbase"] path = 3rdparty/libhwbase url = ../libhwbase.git +[submodule "libgfxinit"] + path = 3rdparty/libgfxinit + url = ../libgfxinit.git diff --git a/3rdparty/libgfxinit b/3rdparty/libgfxinit new file mode 160000 +Subproject 83693c8d7d87f5cebe120abdf25951c9e212b31 diff --git a/Makefile.inc b/Makefile.inc index 666baaab36..84efc71f42 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -568,7 +568,7 @@ gitconfig: fi; \ done # Now set up thehooks for 3rdparty/ - for hooks in .git/modules/{3rdparty/blobs,libhwbase}/hooks; do \ + for hooks in .git/modules/{3rdparty/blobs,libhwbase,libgfxinit}/hooks; do \ if [ -d $$hooks -a \ \( util/gitconfig/commit-msg -nt $$hooks/commit-msg -o \ ! -x $$hooks/commit-msg \) ]; then \ @@ -576,7 +576,7 @@ gitconfig: chmod +x $$hooks/commit-msg; \ fi \ done - for d in 3rdparty/{blobs,libhwbase}; do \ + for d in 3rdparty/{blobs,libhwbase,libgfxinit}; do \ if [ -d $$d ]; then \ (cd $$d; \ git config remote.origin.push HEAD:refs/for/master); \ |