blob: feb1cfdd90c89980c70bb63b0875a7af2d3c917f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
DESCRIPTION = "B2Qt on embedded Linux SDK image"
LICENSE = "CLOSED"
PR = "r0"
IMAGE_FEATURES += "\
package-management \
ssh-server-dropbear \
tools-debug \
debug-tweaks \
hwcodecs \
"
inherit core-image
EXTRA_IMAGEDEPENDS_mx6 += "u-boot-script-boundary"
MACHINE_EXTRA_INSTALL ?= ""
GSTREAMER_EXTRA_INSTALL = "\
gst-meta-video \
gst-meta-audio \
gst-plugins-good \
gst-plugins-base-app \
gst-plugins-good-videofilter \
gst-plugins-good-id3demux \
gst-plugins-good-auparse \
gst-plugins-good-isomp4 \
gst-plugins-ugly-rmdemux \
gst-plugins-ugly-asf \
gst-plugins-ugly-a52dec \
gst-ffmpeg \
"
TOOLS_EXTRA_INSTALL = "\
adbd \
ldd \
binutils \
binutils-symlinks \
"
IMAGE_INSTALL += "\
psplash \
openssh-sftp-server \
openssl \
libpng \
jpeg \
tiff \
libxslt \
icu \
freetype \
fontconfig \
liberation-fonts \
tslib \
tslib-calibrate \
alsa-utils-amixer \
${GSTREAMER_EXTRA_INSTALL} \
${TOOLS_EXTRA_INSTALL} \
${MACHINE_EXTRA_INSTALL} \
"
|