diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-05-08 15:10:17 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-11 23:23:31 +0100 |
commit | c08ee525190df4bcfdb2e772c31ccd0c4228d2ad (patch) | |
tree | 7acac1aeab72dd201ef10b958cc9986d9b350569 /meta | |
parent | a246af9bf76d6a06e6d5f371710e54944e007161 (diff) | |
download | poky-c08ee525190df4bcfdb2e772c31ccd0c4228d2ad.tar.gz |
kernel-yocto: export GUILT_BASE to devshell
One of the patch backends to linux-yocto is guilt, which normally
tracks patches under .git. But .git isn't something that can be
checked into a SCM and repeated. So it has been moved under meta/patches
and committed to the meta branch.
If devshell is used, GUILT_BASE isn't set, so patch manipulations will
fail. We export GUILT_BASE and point it at the meta directory when
devshell is invoked for linux-yocto.
(From OE-Core rev: 10546e42a0db6a9585488536e29759239ef6e73b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index c6425b2b69..e931630510 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -290,4 +290,5 @@ do_kernel_link_vmlinux() { | |||
290 | ln -sf ../../../vmlinux | 290 | ln -sf ../../../vmlinux |
291 | } | 291 | } |
292 | 292 | ||
293 | 293 | OE_TERMINAL_EXPORTS += "GUILT_BASE" | |
294 | GUILT_BASE = "meta" | ||