mirror of
https://github.com/Freescale/meta-freescale-distro.git
synced 2025-10-22 15:03:56 +02:00
Remove old images
The suggestion for equivalent images are: * fsl-image-gui desktop like interface is similar to core-image-sato * fsl-image-gui Qt4 demos are better served by qt4-demo-image * fsl-image-gui GStreamer use and GPU examples are better serverd by fsl-image-multimedia and fsl-image-multimedia-full * fsl-image-test has equivalent one in fsl-image-machine-test but in a smaller image, which is way better for testing We are doing it in a single commit so anyone wishing to revert it locally for use and/or test can do it easily. Change-Id: I48602b0e31eab9070771acb638829727dbfeda45 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
430f524fd4
commit
4a925bfdaa
|
@ -1,32 +0,0 @@
|
|||
# Copyright (C) 2012-2013 Freescale Semiconductor
|
||||
|
||||
DESCRIPTION = "Extra files for fsl-gui-image"
|
||||
LICENSE = "LGPLv2"
|
||||
PR = "r6"
|
||||
S="${WORKDIR}"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=dfb0b24e10ca72d739b14d769d91cf9b"
|
||||
|
||||
SRC_URI += "file://qtbrowser.desktop \
|
||||
file://webkit.png \
|
||||
file://qtmediaplayer.desktop \
|
||||
file://qtmediaplayer.png \
|
||||
file://qtdemo.desktop \
|
||||
file://qtdemo.png \
|
||||
file://qthellogles2.desktop \
|
||||
file://hellogl_es2.png \
|
||||
file://LICENSE"
|
||||
|
||||
inherit allarch
|
||||
|
||||
do_install () {
|
||||
install -d ${D}/${datadir}/pixmaps
|
||||
install -d ${D}/${datadir}/applications
|
||||
install -m 0644 ${WORKDIR}/webkit.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${WORKDIR}/qtbrowser.desktop ${D}/${datadir}/applications
|
||||
install -m 0644 ${WORKDIR}/qtmediaplayer.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${WORKDIR}/qtmediaplayer.desktop ${D}/${datadir}/applications
|
||||
install -m 0644 ${WORKDIR}/qtdemo.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${WORKDIR}/qtdemo.desktop ${D}/${datadir}/applications
|
||||
install -m 0644 ${WORKDIR}/hellogl_es2.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${WORKDIR}/qthellogles2.desktop ${D}/${datadir}/applications
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
All content inside fsl-gui-extrafiles package are distributed under GPLv2 license
|
Binary file not shown.
Before Width: | Height: | Size: 5.4 KiB |
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=QT Browser
|
||||
Exec=/usr/bin/qt4/demos/browser/browser
|
||||
Icon=webkit
|
||||
Terminal=false
|
||||
Type=Application
|
||||
X-MB-SingleInstance=true
|
||||
Comment=Qt Browser
|
||||
StartupNotify=false
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=QT Demo Launcher
|
||||
Exec=/usr/bin/qtdemo
|
||||
Icon=qtdemo
|
||||
Terminal=false
|
||||
Type=Application
|
||||
X-MB-SingleInstance=true
|
||||
Comment=Qt Demo Launcher
|
||||
StartupNotify=false
|
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=QT OpenGL ES2 Hello World
|
||||
Exec=/usr/bin/qt4/examples/opengl/hellogl_es2/hellogl_es2
|
||||
Icon=hellogl_es2
|
||||
Terminal=false
|
||||
Type=Application
|
||||
X-MB-SingleInstance=true
|
||||
Comment=QT OpenGL ES2 Hello World
|
||||
StartupNotify=false
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=QT Media Player
|
||||
Exec=/usr/bin/qt4/demos/qmediaplayer/qmediaplayer
|
||||
Icon=qtmediaplayer
|
||||
Terminal=false
|
||||
Type=Application
|
||||
X-MB-SingleInstance=true
|
||||
Comment=Qt Media Player
|
||||
StartupNotify=false
|
Binary file not shown.
Before Width: | Height: | Size: 7.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 36 KiB |
|
@ -1,38 +0,0 @@
|
|||
include recipes-sato/images/core-image-sato.bb
|
||||
|
||||
IMAGE_FEATURES += "debug-tweaks"
|
||||
DISTRO_FEATURES += "pulseaudio"
|
||||
WEB = "web-webkit"
|
||||
|
||||
SOC_EXTRA_IMAGE_FEATURES ?= "tools-testapps"
|
||||
|
||||
# Add extra image features
|
||||
EXTRA_IMAGE_FEATURES += " \
|
||||
${SOC_EXTRA_IMAGE_FEATURES} \
|
||||
nfs-server \
|
||||
tools-debug \
|
||||
tools-profile \
|
||||
qt4-pkgs \
|
||||
"
|
||||
|
||||
SOC_IMAGE_INSTALL = ""
|
||||
SOC_IMAGE_INSTALL_mx5 = "glcubes-demo"
|
||||
|
||||
IMAGE_INSTALL += " \
|
||||
${SOC_IMAGE_INSTALL} \
|
||||
cpufrequtils \
|
||||
nano \
|
||||
packagegroup-fsl-gstreamer \
|
||||
gst-plugins-good-meta \
|
||||
packagegroup-fsl-tools-gpu \
|
||||
packagegroup-fsl-tools-gpu-external \
|
||||
packagegroup-fsl-tools-testapps \
|
||||
packagegroup-fsl-tools-benchmark \
|
||||
packagegroup-qt-in-use-demos \
|
||||
qt4-plugin-phonon-backend-gstreamer \
|
||||
qt4-demos \
|
||||
qt4-examples \
|
||||
fsl-gui-extrafiles \
|
||||
"
|
||||
|
||||
export IMAGE_BASENAME = "fsl-image-gui"
|
|
@ -1,24 +0,0 @@
|
|||
include recipes-core/images/core-image-base.bb
|
||||
|
||||
IMAGE_FEATURES += "debug-tweaks"
|
||||
|
||||
SOC_EXTRA_IMAGE_FEATURES ?= "tools-testapps"
|
||||
|
||||
# Add extra image features
|
||||
EXTRA_IMAGE_FEATURES += " \
|
||||
${SOC_EXTRA_IMAGE_FEATURES} \
|
||||
nfs-server \
|
||||
tools-debug \
|
||||
tools-profile \
|
||||
"
|
||||
|
||||
IMAGE_INSTALL += " \
|
||||
packagegroup-fsl-gstreamer \
|
||||
gst-plugins-good-meta \
|
||||
packagegroup-fsl-tools-gpu \
|
||||
packagegroup-fsl-tools-gpu-external \
|
||||
packagegroup-fsl-tools-testapps \
|
||||
packagegroup-fsl-tools-benchmark \
|
||||
"
|
||||
|
||||
export IMAGE_BASENAME = "fsl-image-test"
|
|
@ -1,13 +0,0 @@
|
|||
# Copyright (C) 2012 Freescale Semiconductor
|
||||
# Released under the MIT license (see COPYING.MIT for the terms)
|
||||
|
||||
DESCRIPTION = "Qt in use demo applications"
|
||||
HOMEPAGE = "http://qt.gitorious.org/qt-in-use"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
inherit packagegroup
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
qt-in-industrial-embedded-smarthome"
|
Loading…
Reference in New Issue
Block a user