From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by arago-project.org (Postfix) with ESMTPS id 242B652A5F for ; Wed, 16 Mar 2016 18:17:11 +0000 (UTC) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id u2GIHBW9017654 for ; Wed, 16 Mar 2016 13:17:11 -0500 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id u2GIHBQJ007152 for ; Wed, 16 Mar 2016 13:17:11 -0500 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.224.2; Wed, 16 Mar 2016 13:17:10 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id u2GIHAN0022337; Wed, 16 Mar 2016 13:17:10 -0500 Date: Wed, 16 Mar 2016 14:16:55 -0400 From: Denys Dmytriyenko To: Jacob Stiffler Message-ID: <20160316181655.GC29659@edge> References: <1458152054-3169-1-git-send-email-j-stiffler@ti.com> MIME-Version: 1.0 In-Reply-To: <1458152054-3169-1-git-send-email-j-stiffler@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: meta-arago@arago-project.org Subject: Re: [PATCH] parse-ip: Extend to support k2g-evm X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Mar 2016 18:17:11 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Ack On Wed, Mar 16, 2016 at 02:14:14PM -0400, Jacob Stiffler wrote: > Signed-off-by: Jacob Stiffler > --- > .../recipes-tisdk/parse-ip/parse-ip.bb | 2 +- > .../recipes-tisdk/parse-ip/parse-ip/k2g-evm/init | 52 ++++++++++++++++++++++ > 2 files changed, 53 insertions(+), 1 deletion(-) > create mode 100644 meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/k2g-evm/init > > diff --git a/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb b/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb > index 2cfc675..c83bb19 100644 > --- a/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb > +++ b/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb > @@ -7,7 +7,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" > > SRC_URI = "file://init" > > -PR = "r3" > +PR = "r4" > > S = "${WORKDIR}" > > diff --git a/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/k2g-evm/init b/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/k2g-evm/init > new file mode 100644 > index 0000000..a2efc71 > --- /dev/null > +++ b/meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/k2g-evm/init > @@ -0,0 +1,52 @@ > +#!/bin/sh > + > +# This distribution contains contributions or derivatives under copyright > +# as follows: > +# > +# Copyright (c) 2016, Texas Instruments Incorporated > +# All rights reserved. > +# > +# Redistribution and use in source and binary forms, with or without > +# modification, are permitted provided that the following conditions > +# are met: > +# - Redistributions of source code must retain the above copyright notice, > +# this list of conditions and the following disclaimer. > +# - Redistributions in binary form must reproduce the above copyright > +# notice, this list of conditions and the following disclaimer in the > +# documentation and/or other materials provided with the distribution. > +# - Neither the name of Texas Instruments nor the names of its > +# contributors may be used to endorse or promote products derived > +# from this software without specific prior written permission. > +# > +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS > +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED > +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR > +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR > +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, > +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, > +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR > +# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF > +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE > +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF > +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. > + > +case "$1" in > + start ) > + /bin/stty -F /dev/ttyS2 115200 > + > + echo ' ' > ipaddr > + echo ' ' >> ipaddr > + echo '#>>>>> LCD 12' >> ipaddr > + echo 'IP Address:' >> ipaddr > + cat ipaddr > /dev/ttyS2 > + wait > + sleep 1 > + > + echo `ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{print $1}'` > ipaddr > + cat ipaddr > /dev/ttyS2 > + wait > + sleep 1 > + ;; > + stop ) > + exit 0;; > +esac > -- > 1.9.1 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago