@@ -21,7 +21,6 @@ IMAGE_INSTALL += "\
packagegroup-arago-tisdk-matrix \
packagegroup-arago-tisdk-matrix-extra \
packagegroup-arago-tisdk-multimedia \
- packagegroup-arago-tisdk-amsdk \
packagegroup-arago-tisdk-addons \
packagegroup-arago-tisdk-addons-extra \
${@bb.utils.contains('MACHINE_FEATURES','gpu','packagegroup-arago-tisdk-hmi','packagegroup-arago-base-tisdk-server-extra',d)} \
deleted file mode 100644
@@ -1,22 +0,0 @@
-DESCRIPTION = "Task to install additional packages only used in the Arago SDK"
-LICENSE = "MIT"
-PR = "r11"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-inherit packagegroup
-
-# Out of Box Experience (OOBE)
-OOBE = ""
-
-OOBE:ti33x += "\
- parse-ip \
-"
-
-OOBE:ti43x += "\
- parse-ip \
-"
-
-RDEPENDS:${PN} = "\
- ${OOBE} \
-"
@@ -52,7 +52,6 @@ RDEPENDS:${PN} = "\
packagegroup-arago-tisdk-matrix \
packagegroup-arago-tisdk-matrix-extra \
packagegroup-arago-tisdk-multimedia \
- packagegroup-arago-tisdk-amsdk \
packagegroup-arago-tisdk-addons \
packagegroup-arago-tisdk-addons-extra \
${@bb.utils.contains('MACHINE_FEATURES','gpu','packagegroup-arago-tisdk-hmi','packagegroup-arago-base-tisdk-server-extra',d)} \
deleted file mode 100644
@@ -1,24 +0,0 @@
-DESCRIPTION = "Script to parse ip address during boot and make it available to the host system using shared partitions"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://init;beginline=3;endline=31;md5=f82ddb19a87f97193d08feacfd0e4903"
-
-COMPATIBLE_MACHINE = "ti33x|ti43x"
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-SRC_URI = "file://init"
-
-PR = "r6"
-
-S = "${WORKDIR}"
-
-INITSCRIPT_NAME = "parse-ip"
-INITSCRIPT_PARAMS = "defaults 98"
-
-inherit update-rc.d
-
-do_install() {
- install -d ${D}${sysconfdir}/init.d
- install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/parse-ip
-}
-
-FILES:${PN} = "${sysconfdir}"
deleted file mode 100644
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-# This distribution contains contributions or derivatives under copyright
-# as follows:
-#
-# Copyright (c) 2010-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 )
- if [ -e /run/media/mmcblk0p1 ]
- then
- echo `ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{print $1}'` > /run/media/mmcblk0p1/.ipaddr
- sync
- sync
- fi
- ;;
- stop )
- exit 0;;
-esac
-
-exit 0
deleted file mode 100644
@@ -1,52 +0,0 @@
-#!/bin/sh
-
-# This distribution contains contributions or derivatives under copyright
-# as follows:
-#
-# Copyright (c) 2010-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
deleted file mode 100644
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-# This distribution contains contributions or derivatives under copyright
-# as follows:
-#
-# Copyright (c) 2010-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 )
- echo ' ' > ipaddr
- echo ' ' >> ipaddr
- echo '#>>>>> LCD 12' >> ipaddr
- echo 'IP Address:' >> ipaddr
- wait
- sleep 1
-
- echo `ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{print $1}'` >> ipaddr
- cat ipaddr > /dev/ttyS0
- wait
- sleep 1
- ;;
- stop )
- exit 0;;
-esac
These make several assumptions about the location and availability of an SD card. The usefulness of this script outside of the removed K2x context is not clear. Remove this script. This also was the last included package in arago-tisdk-amsdk so remove that packagegroup as well. Signed-off-by: Andrew Davis <afd@ti.com> --- .../images/tisdk-default-image.bb | 1 - .../packagegroup-arago-tisdk-amsdk.bb | 22 -------- .../recipes-core/packagegroups/ti-world.bb | 1 - .../recipes-tisdk/parse-ip/parse-ip.bb | 24 --------- .../recipes-tisdk/parse-ip/parse-ip/init | 46 ---------------- .../recipes-tisdk/parse-ip/parse-ip/k2g/init | 52 ------------------- .../parse-ip/parse-ip/keystone/init | 49 ----------------- 7 files changed, 195 deletions(-) delete mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk.bb delete mode 100644 meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb delete mode 100644 meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/init delete mode 100644 meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/k2g/init delete mode 100644 meta-arago-distro/recipes-tisdk/parse-ip/parse-ip/keystone/init