* [PATCH] recipes: Use 'packagegroup' instead of 'task'
@ 2012-09-09 17:07 Khem Raj
2012-09-11 16:46 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2012-09-09 17:07 UTC (permalink / raw)
To: meta-ti
bring recipes in sync with OE-Core, task bbclass
is now replaced by packagegroup.
and task recipes are now called packagegroup_something
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
recipes-kernel/linux/multi-kernel.inc | 2 +-
recipes-misc/images/cloud9-gfx-image.bb | 2 +-
recipes-misc/images/cloud9-gnome-image.bb | 2 +-
recipes-misc/images/cloud9-image.bb | 2 +-
recipes-misc/images/ti-hw-bringup-image.bb | 2 +-
.../packagegroup-ti-drivers.bb} | 2 +-
.../packagegroup-ti-test.bb} | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
rename recipes-misc/{tasks/task-ti-drivers.bb => packagegroup/packagegroup-ti-drivers.bb} (96%)
rename recipes-ti/{tasks/task-ti-test.bb => packagegroup/packagegroup-ti-test.bb} (92%)
diff --git a/recipes-kernel/linux/multi-kernel.inc b/recipes-kernel/linux/multi-kernel.inc
index 04bc987..96d6121 100644
--- a/recipes-kernel/linux/multi-kernel.inc
+++ b/recipes-kernel/linux/multi-kernel.inc
@@ -117,5 +117,5 @@ do_deploy_append () {
}
-do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot virtual/${TARGET_PREFIX}gcc${KERNEL_CCSUFFIX}:do_populate_sysroot"
+do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot"
addtask compileconfigs after do_preparekernel before do_compile
diff --git a/recipes-misc/images/cloud9-gfx-image.bb b/recipes-misc/images/cloud9-gfx-image.bb
index 689a7c9..67423f6 100644
--- a/recipes-misc/images/cloud9-gfx-image.bb
+++ b/recipes-misc/images/cloud9-gfx-image.bb
@@ -3,7 +3,7 @@
require cloud9-image.bb
IMAGE_INSTALL += " \
- task-xserver \
+ packagegroup-core-x11-xserver \
angstrom-gnome-icon-theme-enable gtk-engine-clearlooks gtk-theme-clearlooks angstrom-clearlooks-theme-enable \
e-wm-config-default e-wm-config-standard e-wm-config-illume2 \
xserver-nodm-init \
diff --git a/recipes-misc/images/cloud9-gnome-image.bb b/recipes-misc/images/cloud9-gnome-image.bb
index 13638d7..c183244 100644
--- a/recipes-misc/images/cloud9-gnome-image.bb
+++ b/recipes-misc/images/cloud9-gnome-image.bb
@@ -8,7 +8,7 @@ SOCSUPPORT_omap3 = "xbmc libgles-omap3-x11demos gstreamer-ti omapfbplay"
SOCSUPPORT_ti33x = "xbmc libgles-omap3-x11demos gst-ffmpeg mplayer2 beaglebone-capes"
IMAGE_INSTALL += " \
- angstrom-task-gnome gimp abiword gedit midori epiphany firefox matchbox-terminal \
+ angstrom-packagegroup-gnome gimp abiword gedit midori epiphany firefox matchbox-terminal \
${SOCSUPPORT} \
ttf-dejavu-sans ttf-dejavu-sans-mono ttf-dejavu-common \
xinput-calibrator \
diff --git a/recipes-misc/images/cloud9-image.bb b/recipes-misc/images/cloud9-image.bb
index c29d1cb..519a8bb 100644
--- a/recipes-misc/images/cloud9-image.bb
+++ b/recipes-misc/images/cloud9-image.bb
@@ -9,7 +9,7 @@ ROOTFSTYPE_beaglebone = "ext4"
IMAGE_INSTALL += " \
systemd-analyze \
cloud9 \
- task-sdk-target \
+ packagegroup-sdk-target \
vim vim-vimrc \
procps \
beaglebone-tester \
diff --git a/recipes-misc/images/ti-hw-bringup-image.bb b/recipes-misc/images/ti-hw-bringup-image.bb
index 9490098..e8dd5ed 100644
--- a/recipes-misc/images/ti-hw-bringup-image.bb
+++ b/recipes-misc/images/ti-hw-bringup-image.bb
@@ -21,7 +21,7 @@ IMAGE_INSTALL += " \
rt-tests \
evtest \
bc \
- task-ti-test \
+ packagegroup-ti-test \
kernel-modules \
timestamp-service \
${EXTRA_MACHINE_IMAGE_INSTALL} \
diff --git a/recipes-misc/tasks/task-ti-drivers.bb b/recipes-misc/packagegroup/packagegroup-ti-drivers.bb
similarity index 96%
rename from recipes-misc/tasks/task-ti-drivers.bb
rename to recipes-misc/packagegroup/packagegroup-ti-drivers.bb
index 532f273..e63d31b 100644
--- a/recipes-misc/tasks/task-ti-drivers.bb
+++ b/recipes-misc/packagegroup/packagegroup-ti-drivers.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Task for extra drivers for Texas Instruments SoCs"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
-inherit task
+inherit packagegroup
RDEPENDS_${PN} = "\
zd1211-firmware \
diff --git a/recipes-ti/tasks/task-ti-test.bb b/recipes-ti/packagegroup/packagegroup-ti-test.bb
similarity index 92%
rename from recipes-ti/tasks/task-ti-test.bb
rename to recipes-ti/packagegroup/packagegroup-ti-test.bb
index c11695c..fc19bc5 100644
--- a/recipes-ti/tasks/task-ti-test.bb
+++ b/recipes-ti/packagegroup/packagegroup-ti-test.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Extended task to get System Test specific apps"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
-inherit allarch task
+inherit allarch packagegroup
TEST = "\
bonnie++ \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] recipes: Use 'packagegroup' instead of 'task'
2012-09-09 17:07 [PATCH] recipes: Use 'packagegroup' instead of 'task' Khem Raj
@ 2012-09-11 16:46 ` Denys Dmytriyenko
2012-09-11 17:26 ` Khem Raj
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-09-11 16:46 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Sun, Sep 09, 2012 at 10:07:47AM -0700, Khem Raj wrote:
> bring recipes in sync with OE-Core, task bbclass
> is now replaced by packagegroup.
>
> and task recipes are now called packagegroup_something
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> recipes-kernel/linux/multi-kernel.inc | 2 +-
> recipes-misc/images/cloud9-gfx-image.bb | 2 +-
> recipes-misc/images/cloud9-gnome-image.bb | 2 +-
> recipes-misc/images/cloud9-image.bb | 2 +-
> recipes-misc/images/ti-hw-bringup-image.bb | 2 +-
> .../packagegroup-ti-drivers.bb} | 2 +-
> .../packagegroup-ti-test.bb} | 2 +-
> 7 files changed, 7 insertions(+), 7 deletions(-)
> rename recipes-misc/{tasks/task-ti-drivers.bb => packagegroup/packagegroup-ti-drivers.bb} (96%)
> rename recipes-ti/{tasks/task-ti-test.bb => packagegroup/packagegroup-ti-test.bb} (92%)
>
> diff --git a/recipes-kernel/linux/multi-kernel.inc b/recipes-kernel/linux/multi-kernel.inc
> index 04bc987..96d6121 100644
> --- a/recipes-kernel/linux/multi-kernel.inc
> +++ b/recipes-kernel/linux/multi-kernel.inc
> @@ -117,5 +117,5 @@ do_deploy_append () {
>
> }
>
> -do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot virtual/${TARGET_PREFIX}gcc${KERNEL_CCSUFFIX}:do_populate_sysroot"
> +do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot"
Why is this changed? Isn't gcc${KERNEL_CCSUFFIX} no longer useful?
--
Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] recipes: Use 'packagegroup' instead of 'task'
2012-09-11 16:46 ` Denys Dmytriyenko
@ 2012-09-11 17:26 ` Khem Raj
2012-09-14 4:30 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2012-09-11 17:26 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Tue, Sep 11, 2012 at 9:46 AM, Denys Dmytriyenko <denys@ti.com> wrote:
> On Sun, Sep 09, 2012 at 10:07:47AM -0700, Khem Raj wrote:
>> bring recipes in sync with OE-Core, task bbclass
>> is now replaced by packagegroup.
>>
>> and task recipes are now called packagegroup_something
>>
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>> recipes-kernel/linux/multi-kernel.inc | 2 +-
>> recipes-misc/images/cloud9-gfx-image.bb | 2 +-
>> recipes-misc/images/cloud9-gnome-image.bb | 2 +-
>> recipes-misc/images/cloud9-image.bb | 2 +-
>> recipes-misc/images/ti-hw-bringup-image.bb | 2 +-
>> .../packagegroup-ti-drivers.bb} | 2 +-
>> .../packagegroup-ti-test.bb} | 2 +-
>> 7 files changed, 7 insertions(+), 7 deletions(-)
>> rename recipes-misc/{tasks/task-ti-drivers.bb => packagegroup/packagegroup-ti-drivers.bb} (96%)
>> rename recipes-ti/{tasks/task-ti-test.bb => packagegroup/packagegroup-ti-test.bb} (92%)
>>
>> diff --git a/recipes-kernel/linux/multi-kernel.inc b/recipes-kernel/linux/multi-kernel.inc
>> index 04bc987..96d6121 100644
>> --- a/recipes-kernel/linux/multi-kernel.inc
>> +++ b/recipes-kernel/linux/multi-kernel.inc
>> @@ -117,5 +117,5 @@ do_deploy_append () {
>>
>> }
>>
>> -do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot virtual/${TARGET_PREFIX}gcc${KERNEL_CCSUFFIX}:do_populate_sysroot"
>> +do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot"
>
> Why is this changed? Isn't gcc${KERNEL_CCSUFFIX} no longer useful?
>
this should have been a separate commit. Its needed to accompany
http://patchwork.openembedded.org/patch/35151/
> --
> Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] recipes: Use 'packagegroup' instead of 'task'
2012-09-11 17:26 ` Khem Raj
@ 2012-09-14 4:30 ` Denys Dmytriyenko
2012-09-14 4:52 ` Khem Raj
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-09-14 4:30 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Tue, Sep 11, 2012 at 10:26:14AM -0700, Khem Raj wrote:
> On Tue, Sep 11, 2012 at 9:46 AM, Denys Dmytriyenko <denys@ti.com> wrote:
> > On Sun, Sep 09, 2012 at 10:07:47AM -0700, Khem Raj wrote:
> >> bring recipes in sync with OE-Core, task bbclass
> >> is now replaced by packagegroup.
> >>
> >> and task recipes are now called packagegroup_something
> >>
> >> diff --git a/recipes-kernel/linux/multi-kernel.inc b/recipes-kernel/linux/multi-kernel.inc
> >> index 04bc987..96d6121 100644
> >> --- a/recipes-kernel/linux/multi-kernel.inc
> >> +++ b/recipes-kernel/linux/multi-kernel.inc
> >> @@ -117,5 +117,5 @@ do_deploy_append () {
> >>
> >> }
> >>
> >> -do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot virtual/${TARGET_PREFIX}gcc${KERNEL_CCSUFFIX}:do_populate_sysroot"
> >> +do_compileconfigs[depends] += "u-boot-mkimage-native:do_populate_sysroot virtual/${TARGET_PREFIX}gcc:do_populate_sysroot"
> >
> > Why is this changed? Isn't gcc${KERNEL_CCSUFFIX} no longer useful?
> >
>
> this should have been a separate commit.
Then you wouldn't mind if I skip that hunk?
> Its needed to accompany > http://patchwork.openembedded.org/patch/35151/
Interesting. What's the status on that?
--
Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] recipes: Use 'packagegroup' instead of 'task'
2012-09-14 4:30 ` Denys Dmytriyenko
@ 2012-09-14 4:52 ` Khem Raj
0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2012-09-14 4:52 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
[-- Attachment #1: Type: text/html, Size: 2103 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-09-14 4:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-09 17:07 [PATCH] recipes: Use 'packagegroup' instead of 'task' Khem Raj
2012-09-11 16:46 ` Denys Dmytriyenko
2012-09-11 17:26 ` Khem Raj
2012-09-14 4:30 ` Denys Dmytriyenko
2012-09-14 4:52 ` Khem Raj
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.