diff options
author | Alex J Lennon <ajlennon@dynamicdevices.co.uk> | 2014-06-02 11:47:34 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2014-06-10 21:20:21 +0300 |
commit | aa790be2fa303de4d881aac4ac75cabf565a332e (patch) | |
tree | 9c0b79844a0dc8fd6c4017ee5c51751569db9e9a | |
parent | e7fdcad1fa7da2654c1cfbf10719def7b851e7cd (diff) | |
download | meta-raspberrypi-aa790be2fa303de4d881aac4ac75cabf565a332e.tar.gz |
userland: Add SRCBRANCH and SRCFORK for use by SRC_URI
Makes it clearer to manage repo forks, and branches prior to (e.g.) upstream
commits of in tree changes.
Change-Id: I42f8af975c08f84c4ceb9910713eba2da3a87d8b
Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
Acked-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r-- | recipes-graphics/userland/userland_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb index 4b405ee..7fb7ebb 100644 --- a/recipes-graphics/userland/userland_git.bb +++ b/recipes-graphics/userland/userland_git.bb | |||
@@ -11,8 +11,11 @@ PROVIDES = "virtual/libgles2 \ | |||
11 | virtual/egl" | 11 | virtual/egl" |
12 | COMPATIBLE_MACHINE = "raspberrypi" | 12 | COMPATIBLE_MACHINE = "raspberrypi" |
13 | 13 | ||
14 | SRCBRANCH = "master" | ||
15 | SRCFORK = "raspberrypi" | ||
14 | SRCREV = "eccb81050afd177da1923404b366c6226f29bfe0" | 16 | SRCREV = "eccb81050afd177da1923404b366c6226f29bfe0" |
15 | SRC_URI = "git://github.com/raspberrypi/userland.git;protocol=git;branch=master \ | 17 | |
18 | SRC_URI = "git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \ | ||
16 | " | 19 | " |
17 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
18 | 21 | ||