All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it
@ 2012-04-19 15:33 Koen Kooi
  2012-04-19 15:33 ` [PATCH 2/2] linux-ti33x-psp 3.2: fix VGA cape detection for beaglebone Koen Kooi
  2012-04-23 20:25 ` [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
  0 siblings, 2 replies; 5+ messages in thread
From: Koen Kooi @ 2012-04-19 15:33 UTC (permalink / raw)
  To: meta-ti; +Cc: denys

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 recipes-misc/images/cloud9-gnome-image.bb |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)
 create mode 100644 recipes-misc/images/cloud9-gnome-image.bb

diff --git a/recipes-misc/images/cloud9-gnome-image.bb b/recipes-misc/images/cloud9-gnome-image.bb
new file mode 100644
index 0000000..13638d7
--- /dev/null
+++ b/recipes-misc/images/cloud9-gnome-image.bb
@@ -0,0 +1,19 @@
+# Image with cloud9 ide, gfx and hw tools installed
+
+require cloud9-image.bb
+
+# SoC specific packages, mostly 3D or multimedia related
+SOCSUPPORT = ""
+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 \
+                  ${SOCSUPPORT} \
+                  ttf-dejavu-sans ttf-dejavu-sans-mono ttf-dejavu-common \
+                  xinput-calibrator \
+                  xterm \
+                 "
+
+export IMAGE_BASENAME = "Cloud9-IDE-GNOME"
+
-- 
1.7.2.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] linux-ti33x-psp 3.2: fix VGA cape detection for beaglebone
  2012-04-19 15:33 [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
@ 2012-04-19 15:33 ` Koen Kooi
  2012-04-23 20:25 ` [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
  1 sibling, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2012-04-19 15:33 UTC (permalink / raw)
  To: meta-ti; +Cc: denys

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 ...don-t-compare-undefined-characters-it-mak.patch |   26 ++++++++++++++++++++
 recipes-kernel/linux/linux-ti33x-psp_3.2.bb        |    3 +-
 2 files changed, 28 insertions(+), 1 deletions(-)
 create mode 100644 recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0030-beaglebone-don-t-compare-undefined-characters-it-mak.patch

diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0030-beaglebone-don-t-compare-undefined-characters-it-mak.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0030-beaglebone-don-t-compare-undefined-characters-it-mak.patch
new file mode 100644
index 0000000..48e8c53
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0030-beaglebone-don-t-compare-undefined-characters-it-mak.patch
@@ -0,0 +1,26 @@
+From 6e14ab85bd71ec3831169d665c4e79f646a60df8 Mon Sep 17 00:00:00 2001
+From: Koen Kooi <koen@dominion.thruhere.net>
+Date: Thu, 19 Apr 2012 07:55:55 +0200
+Subject: [PATCH 30/30] beaglebone: don't compare undefined characters, it makes strncomp fail
+
+Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
+---
+ arch/arm/mach-omap2/board-am335xevm.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/arch/arm/mach-omap2/board-am335xevm.c b/arch/arm/mach-omap2/board-am335xevm.c
+index bfcccd9..08a0425 100644
+--- a/arch/arm/mach-omap2/board-am335xevm.c
++++ b/arch/arm/mach-omap2/board-am335xevm.c
+@@ -2152,7 +2152,7 @@ static void beaglebone_cape_setup(struct memory_accessor *mem_acc, void *context
+ 		beaglebone_lcd3_keys_init(0,0);
+ 	}
+ 	
+-	if (!strncmp("BB-BONE-VGA-01", cape_config.partnumber, 15)) {
++	if (!strncmp("BB-BONE-VGA-01", cape_config.partnumber, 14)) {
+ 		pr_info("BeagleBone cape: initializing VGA cape\n");
+ 		dvi_init(0,0);
+ 	}
+-- 
+1.7.2.5
+
diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
index d3a2f2e..f560a1d 100644
--- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
+++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
@@ -12,7 +12,7 @@ MULTI_CONFIG_BASE_SUFFIX = ""
 
 BRANCH = "v3.2-staging"
 SRCREV = "e8004dad869568692ca2a45c04e8464ce48cc4d7"
-MACHINE_KERNEL_PR_append = "c+gitr${SRCREV}"
+MACHINE_KERNEL_PR_append = "d+gitr${SRCREV}"
 
 COMPATIBLE_MACHINE = "(ti33x)"
 
@@ -825,4 +825,5 @@ PATCHES_OVER_PSP = " \
 	file://beaglebone/0027-beaglebone-decrease-PWM-frequency-to-old-value-LCD7-.patch \
 	file://beaglebone/0028-beaglebone-fix-ehrpwm-backlight.patch \
 	file://beaglebone/0029-beaglebone-also-report-cape-revision.patch \
+	file://beaglebone/0030-beaglebone-don-t-compare-undefined-characters-it-mak.patch \
 "
-- 
1.7.2.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it
  2012-04-19 15:33 [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
  2012-04-19 15:33 ` [PATCH 2/2] linux-ti33x-psp 3.2: fix VGA cape detection for beaglebone Koen Kooi
@ 2012-04-23 20:25 ` Koen Kooi
  2012-04-23 21:05   ` Denys Dmytriyenko
  1 sibling, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2012-04-23 20:25 UTC (permalink / raw)
  To: meta-ti

ping on this one, the rest is already in :)

Op 19 apr. 2012, om 17:33 heeft Koen Kooi het volgende geschreven:

> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> recipes-misc/images/cloud9-gnome-image.bb |   19 +++++++++++++++++++
> 1 files changed, 19 insertions(+), 0 deletions(-)
> create mode 100644 recipes-misc/images/cloud9-gnome-image.bb
> 
> diff --git a/recipes-misc/images/cloud9-gnome-image.bb b/recipes-misc/images/cloud9-gnome-image.bb
> new file mode 100644
> index 0000000..13638d7
> --- /dev/null
> +++ b/recipes-misc/images/cloud9-gnome-image.bb
> @@ -0,0 +1,19 @@
> +# Image with cloud9 ide, gfx and hw tools installed
> +
> +require cloud9-image.bb
> +
> +# SoC specific packages, mostly 3D or multimedia related
> +SOCSUPPORT = ""
> +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 \
> +                  ${SOCSUPPORT} \
> +                  ttf-dejavu-sans ttf-dejavu-sans-mono ttf-dejavu-common \
> +                  xinput-calibrator \
> +                  xterm \
> +                 "
> +
> +export IMAGE_BASENAME = "Cloud9-IDE-GNOME"
> +
> -- 
> 1.7.2.5
> 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it
  2012-04-23 20:25 ` [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
@ 2012-04-23 21:05   ` Denys Dmytriyenko
  2012-04-24  6:35     ` Koen Kooi
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-04-23 21:05 UTC (permalink / raw)
  To: Koen Kooi; +Cc: meta-ti

On Mon, Apr 23, 2012 at 10:25:55PM +0200, Koen Kooi wrote:
> ping on this one, the rest is already in :)

Yeah, I know :)

I was holding on it, since it adds one more systemd and angstrom dependency 
and I was working on restructuring the code to separate those things into 
"extras" sublayer...

But since it's around the release time, this restructuring probably should be 
held until after.

-- 
Denys


> Op 19 apr. 2012, om 17:33 heeft Koen Kooi het volgende geschreven:
> 
> > Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> > ---
> > recipes-misc/images/cloud9-gnome-image.bb |   19 +++++++++++++++++++
> > 1 files changed, 19 insertions(+), 0 deletions(-)
> > create mode 100644 recipes-misc/images/cloud9-gnome-image.bb
> > 
> > diff --git a/recipes-misc/images/cloud9-gnome-image.bb b/recipes-misc/images/cloud9-gnome-image.bb
> > new file mode 100644
> > index 0000000..13638d7
> > --- /dev/null
> > +++ b/recipes-misc/images/cloud9-gnome-image.bb
> > @@ -0,0 +1,19 @@
> > +# Image with cloud9 ide, gfx and hw tools installed
> > +
> > +require cloud9-image.bb
> > +
> > +# SoC specific packages, mostly 3D or multimedia related
> > +SOCSUPPORT = ""
> > +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 \
> > +                  ${SOCSUPPORT} \
> > +                  ttf-dejavu-sans ttf-dejavu-sans-mono ttf-dejavu-common \
> > +                  xinput-calibrator \
> > +                  xterm \
> > +                 "
> > +
> > +export IMAGE_BASENAME = "Cloud9-IDE-GNOME"
> > +
> > -- 
> > 1.7.2.5
> > 
> 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it
  2012-04-23 21:05   ` Denys Dmytriyenko
@ 2012-04-24  6:35     ` Koen Kooi
  0 siblings, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2012-04-24  6:35 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti


Op 23 apr. 2012, om 23:05 heeft Denys Dmytriyenko het volgende geschreven:

> On Mon, Apr 23, 2012 at 10:25:55PM +0200, Koen Kooi wrote:
>> ping on this one, the rest is already in :)
> 
> Yeah, I know :)
> 
> I was holding on it, since it adds one more systemd and angstrom dependency 
> and I was working on restructuring the code to separate those things into 
> "extras" sublayer...
> 
> But since it's around the release time, this restructuring probably should be 
> held until after.

And it's the last patch needed for the beaglebone production release as well.

regards,

Koen

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-04-24  6:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-19 15:33 [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
2012-04-19 15:33 ` [PATCH 2/2] linux-ti33x-psp 3.2: fix VGA cape detection for beaglebone Koen Kooi
2012-04-23 20:25 ` [PATCH 1/2] cloud9-gnome-image: same as cloud9-image, but with GNOME added to it Koen Kooi
2012-04-23 21:05   ` Denys Dmytriyenko
2012-04-24  6:35     ` Koen Kooi

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.