All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] task-arago-base: port from old arago
@ 2012-02-02 21:01 Chase Maupin
  2012-02-02 21:01 ` [PATCH 2/5] task-arago-console: " Chase Maupin
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Chase Maupin @ 2012-02-02 21:01 UTC (permalink / raw)
  To: meta-arago

* Ported the base task from old arago overlay
* Updated task license checksum

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-core/tasks/task-arago-base.bb          |   35 ++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-core/tasks/task-arago-base.bb

diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-base.bb b/meta-arago-distro/recipes-core/tasks/task-arago-base.bb
new file mode 100644
index 0000000..d9f7f93
--- /dev/null
+++ b/meta-arago-distro/recipes-core/tasks/task-arago-base.bb
@@ -0,0 +1,35 @@
+DESCRIPTION = "Basic task to get a device booting"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r0"
+
+inherit task
+
+ARAGO_ALSA_BASE = "\
+    alsa-lib \
+    alsa-utils-aplay \
+    "
+
+ARAGO_BASE = "\
+    ${ARAGO_ALSA_BASE} \
+    mtd-utils \
+    curl \
+    initscript-telnetd \
+    devmem2 \
+    ethtool \
+    tcpdump \
+    "
+
+# minimal set of packages - needed to boot
+RDEPENDS_${PN} = "\
+    base-files \
+    base-passwd \
+    busybox \
+    initscripts \
+    modutils-initscripts \
+    netbase \
+    update-alternatives \
+    module-init-tools \
+    task-basic \
+    ${ARAGO_BASE} \
+    "
-- 
1.7.0.4



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

* [PATCH 2/5] task-arago-console: port from old arago
  2012-02-02 21:01 [PATCH 1/5] task-arago-base: port from old arago Chase Maupin
@ 2012-02-02 21:01 ` Chase Maupin
  2012-02-02 21:01 ` [PATCH 3/5] task-arago-test: " Chase Maupin
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Chase Maupin @ 2012-02-02 21:01 UTC (permalink / raw)
  To: meta-arago

* Ported from old arago overlay with modifications for oe-core
  including license checksum and package name changes as well
  as removing un-needed packages.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-core/tasks/task-arago-console.bb       |   79 ++++++++++++++++++++
 1 files changed, 79 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-core/tasks/task-arago-console.bb

diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-console.bb b/meta-arago-distro/recipes-core/tasks/task-arago-console.bb
new file mode 100644
index 0000000..db424c1
--- /dev/null
+++ b/meta-arago-distro/recipes-core/tasks/task-arago-console.bb
@@ -0,0 +1,79 @@
+DESCRIPTION = "Extended task to get more basic and console apps"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r0"
+
+inherit task
+
+# alsa-utils-alsamixer depends on ncurses
+ARAGO_ALSA_EXTRA = "\
+    alsa-conf \
+    alsa-conf-base \
+    alsa-server \
+    alsa-utils \
+    alsa-utils-aconnect \
+    alsa-utils-alsaconf \
+    alsa-utils-alsactl \
+    alsa-utils-alsamixer \
+    alsa-utils-amixer \
+    alsa-utils-iecset \
+    alsa-utils-midi \
+    alsa-utils-speakertest \
+    alsa-state \
+    "
+
+ARAGO_TSLIB = "\
+    tslib-conf \
+    tslib-calibrate \
+    tslib-tests \
+    "
+
+ARAGO_NCURSES = "\
+    ncurses \
+    ncurses-terminfo \
+    ncurses-tools \
+    "
+
+ARAGO_FSTOOLS = "\
+    e2fsprogs \
+    e2fsprogs-e2fsck \
+    e2fsprogs-mke2fs \
+    dosfstools \
+    util-linux-fdisk \
+    "
+
+ARAGO_UTILS = "\
+    fbset \
+    usbutils \
+    i2c-tools \
+    iproute2 \
+    strace \
+    ltrace \
+    "
+
+ARAGO_SDK_PREREQ = "\
+    zlib \
+    libpng12 \
+    jpeg \
+    jpeg-tools \
+    freetype \
+    lighttpd \
+    lighttpd-module-cgi \
+    "
+
+ARAGO_CONSOLE = "\
+    ${ARAGO_ALSA_EXTRA} \
+    ${ARAGO_TSLIB} \
+    ${ARAGO_NCURSES} \
+    ${ARAGO_FSTOOLS} \
+    ${ARAGO_UTILS} \
+    ${ARAGO_SDK_PREREQ} \
+    "
+
+RDEPENDS_${PN} = "\
+    ${ARAGO_CONSOLE} \
+    "
+
+RRECOMMENDS_${PN} = "\
+    kernel-modules \
+    "
-- 
1.7.0.4



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

* [PATCH 3/5] task-arago-test: port from old arago
  2012-02-02 21:01 [PATCH 1/5] task-arago-base: port from old arago Chase Maupin
  2012-02-02 21:01 ` [PATCH 2/5] task-arago-console: " Chase Maupin
@ 2012-02-02 21:01 ` Chase Maupin
  2012-02-02 21:01 ` [PATCH 4/5] task-arago-base-tisdk: port for " Chase Maupin
  2012-02-02 21:01 ` [PATCH 5/5] task-arago-tisdk-addons: ported from " Chase Maupin
  3 siblings, 0 replies; 7+ messages in thread
From: Chase Maupin @ 2012-02-02 21:01 UTC (permalink / raw)
  To: meta-arago

* Ported from old arago overlay and updated licensing checksum

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-core/tasks/task-arago-test.bb          |   26 ++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-core/tasks/task-arago-test.bb

diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-test.bb b/meta-arago-distro/recipes-core/tasks/task-arago-test.bb
new file mode 100644
index 0000000..8570ebd
--- /dev/null
+++ b/meta-arago-distro/recipes-core/tasks/task-arago-test.bb
@@ -0,0 +1,26 @@
+DESCRIPTION = "Extended task to get System Test specific apps"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r0"
+
+inherit task
+
+ARAGO_TEST = "\
+    bonnie++ \
+    hdparm \
+    iozone3 \
+    iperf \
+    lmbench \
+    rt-tests \
+    evtest \
+    bc \
+    "
+
+ARAGO_TI_TEST = "\
+    ltp-ddt \
+    "
+
+RDEPENDS_${PN} = "\
+    ${ARAGO_TEST} \
+    ${ARAGO_TI_TEST} \
+    "
-- 
1.7.0.4



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

* [PATCH 4/5] task-arago-base-tisdk: port for old arago
  2012-02-02 21:01 [PATCH 1/5] task-arago-base: port from old arago Chase Maupin
  2012-02-02 21:01 ` [PATCH 2/5] task-arago-console: " Chase Maupin
  2012-02-02 21:01 ` [PATCH 3/5] task-arago-test: " Chase Maupin
@ 2012-02-02 21:01 ` Chase Maupin
  2012-02-02 21:01 ` [PATCH 5/5] task-arago-tisdk-addons: ported from " Chase Maupin
  3 siblings, 0 replies; 7+ messages in thread
From: Chase Maupin @ 2012-02-02 21:01 UTC (permalink / raw)
  To: meta-arago

* Ported from old arago overlay and added licensing checksum

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-tisdk/tasks/task-arago-base-tisdk.bb   |   27 ++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/tasks/task-arago-base-tisdk.bb

diff --git a/meta-arago-distro/recipes-tisdk/tasks/task-arago-base-tisdk.bb b/meta-arago-distro/recipes-tisdk/tasks/task-arago-base-tisdk.bb
new file mode 100644
index 0000000..9991b7b
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/tasks/task-arago-base-tisdk.bb
@@ -0,0 +1,27 @@
+DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r0"
+
+inherit task
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+SECONDARY_BOOTLOADER = ""
+SECONDARY_BOOTLOADER_omap3 = "u-boot-spl"
+
+RDEPENDS_${PN} = "\
+    dbus \
+    dbus-x11 \
+    expat \
+    glib-2.0 \
+    libxml2 \
+    libpcre \
+    iptables \
+    iperf \
+    psplash-ti \
+    u-boot \
+    arago-gpl-notice \
+    nfs-utils-client \
+    ${SECONDARY_BOOTLOADER} \
+    "
-- 
1.7.0.4



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

* [PATCH 5/5] task-arago-tisdk-addons: ported from old arago
  2012-02-02 21:01 [PATCH 1/5] task-arago-base: port from old arago Chase Maupin
                   ` (2 preceding siblings ...)
  2012-02-02 21:01 ` [PATCH 4/5] task-arago-base-tisdk: port for " Chase Maupin
@ 2012-02-02 21:01 ` Chase Maupin
  2012-02-06  5:11   ` Denys Dmytriyenko
  3 siblings, 1 reply; 7+ messages in thread
From: Chase Maupin @ 2012-02-02 21:01 UTC (permalink / raw)
  To: meta-arago

* Ported from old arago overlay and added licensing checksum
* Removed unsupported devices

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-tisdk/tasks/task-arago-tisdk-addons.bb |   22 ++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb

diff --git a/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb b/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb
new file mode 100644
index 0000000..8b1231c
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "Task to install additional utilities/demos for SDKs"
+PR = "r0"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+
+inherit task
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+UTILS = " \
+    matrix-gui-settings-demos \
+    matrix-gui-armbenchmarks-demos \
+    task-arago-test \
+    gdbserver \
+    matrix-gui-oprofile-demos \
+    "
+
+# Add PRU examples for am180x-evm devices
+UTILS_append_am180x-evm = " ti-pru-sw-examples"
+
+RDEPENDS_${PN} = "\
+    ${UTILS} \
+    "
-- 
1.7.0.4



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

* Re: [PATCH 5/5] task-arago-tisdk-addons: ported from old arago
  2012-02-02 21:01 ` [PATCH 5/5] task-arago-tisdk-addons: ported from " Chase Maupin
@ 2012-02-06  5:11   ` Denys Dmytriyenko
  2012-02-06 12:49     ` Maupin, Chase
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2012-02-06  5:11 UTC (permalink / raw)
  To: Chase Maupin; +Cc: meta-arago

On Thu, Feb 02, 2012 at 03:01:32PM -0600, Chase Maupin wrote:
> * Ported from old arago overlay and added licensing checksum
> * Removed unsupported devices
> 
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
>  .../recipes-tisdk/tasks/task-arago-tisdk-addons.bb |   22 ++++++++++++++++++++
>  1 files changed, 22 insertions(+), 0 deletions(-)
>  create mode 100644 meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb
> 
> diff --git a/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb b/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb
> new file mode 100644
> index 0000000..8b1231c
> --- /dev/null
> +++ b/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-addons.bb
> @@ -0,0 +1,22 @@
> +DESCRIPTION = "Task to install additional utilities/demos for SDKs"
> +PR = "r0"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
> +
> +inherit task
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +UTILS = " \
> +    matrix-gui-settings-demos \
> +    matrix-gui-armbenchmarks-demos \
> +    task-arago-test \
> +    gdbserver \
> +    matrix-gui-oprofile-demos \
> +    "
> +
> +# Add PRU examples for am180x-evm devices
> +UTILS_append_am180x-evm = " ti-pru-sw-examples"

While matrix pieces are now being updated and moved to meta-arago, I don't 
think ti-pru-sw* pieces have made it to either meta-arago or meta-ti...

Would you like to port ti-pru-sw* first, or just comment it out from this task 
for now?

-- 
Denys


> +RDEPENDS_${PN} = "\
> +    ${UTILS} \
> +    "
> -- 
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

* Re: [PATCH 5/5] task-arago-tisdk-addons: ported from old arago
  2012-02-06  5:11   ` Denys Dmytriyenko
@ 2012-02-06 12:49     ` Maupin, Chase
  0 siblings, 0 replies; 7+ messages in thread
From: Maupin, Chase @ 2012-02-06 12:49 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago@arago-project.org

> -----Original Message-----
> From: Denys Dmytriyenko [mailto:denis@denix.org]
> Sent: Sunday, February 05, 2012 11:11 PM
> To: Maupin, Chase
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 5/5] task-arago-tisdk-addons:
> ported from old arago
> 
> On Thu, Feb 02, 2012 at 03:01:32PM -0600, Chase Maupin wrote:
> > * Ported from old arago overlay and added licensing checksum
> > * Removed unsupported devices
> >
> > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > ---
> >  .../recipes-tisdk/tasks/task-arago-tisdk-addons.bb |   22
> ++++++++++++++++++++
> >  1 files changed, 22 insertions(+), 0 deletions(-)
> >  create mode 100644 meta-arago-distro/recipes-tisdk/tasks/task-
> arago-tisdk-addons.bb
> >
> > diff --git a/meta-arago-distro/recipes-tisdk/tasks/task-arago-
> tisdk-addons.bb b/meta-arago-distro/recipes-tisdk/tasks/task-arago-
> tisdk-addons.bb
> > new file mode 100644
> > index 0000000..8b1231c
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-tisdk/tasks/task-arago-tisdk-
> addons.bb
> > @@ -0,0 +1,22 @@
> > +DESCRIPTION = "Task to install additional utilities/demos for
> SDKs"
> > +PR = "r0"
> > +LICENSE = "MIT"
> > +LIC_FILES_CHKSUM =
> "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4d
> e20420"
> > +
> > +inherit task
> > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > +
> > +UTILS = " \
> > +    matrix-gui-settings-demos \
> > +    matrix-gui-armbenchmarks-demos \
> > +    task-arago-test \
> > +    gdbserver \
> > +    matrix-gui-oprofile-demos \
> > +    "
> > +
> > +# Add PRU examples for am180x-evm devices
> > +UTILS_append_am180x-evm = " ti-pru-sw-examples"
> 
> While matrix pieces are now being updated and moved to meta-arago,
> I don't
> think ti-pru-sw* pieces have made it to either meta-arago or meta-
> ti...
> 
> Would you like to port ti-pru-sw* first, or just comment it out
> from this task
> for now?

I'll comment it out for now, I don’t want to forget it, but it is lower on my priority list.

> 
> --
> Denys
> 
> 
> > +RDEPENDS_${PN} = "\
> > +    ${UTILS} \
> > +    "
> > --
> > 1.7.0.4
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >


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

end of thread, other threads:[~2012-02-06 12:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-02 21:01 [PATCH 1/5] task-arago-base: port from old arago Chase Maupin
2012-02-02 21:01 ` [PATCH 2/5] task-arago-console: " Chase Maupin
2012-02-02 21:01 ` [PATCH 3/5] task-arago-test: " Chase Maupin
2012-02-02 21:01 ` [PATCH 4/5] task-arago-base-tisdk: port for " Chase Maupin
2012-02-02 21:01 ` [PATCH 5/5] task-arago-tisdk-addons: ported from " Chase Maupin
2012-02-06  5:11   ` Denys Dmytriyenko
2012-02-06 12:49     ` Maupin, Chase

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.