-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathlocal.conf.sample
65 lines (59 loc) · 2.38 KB
/
local.conf.sample
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
60
61
62
63
64
65
# the contents of local.conf are intended to be user or build machine specific and not
# applicable to the broader team; therefore, it should NOT be checked into Git.
# below is a sample of what might go in local.conf
# if you want to use a directory for downloads other than the default, set
# it here. It is recommended you use this method rather than softlinking
# downloads to another directory, so that the location can be automatically
# mapped into the docker container.
DL_DIR = "/scratch/downloads"
# required for Freescale stuff to build
ACCEPT_FSL_EULA = "1"
# required for Qualcomm stuff to build
ACCEPT_EULA = "1"
# The two lines below enable SDL frontend for qemu
# default is VNC
PACKAGECONFIG:append:pn-qemu-native = " sdl"
PACKAGECONFIG:append:pn-nativesdk-qemu = " sdl"
# components whose licensing have commercial distribution impact
#
# required to build netperf
LICENSE_FLAGS_ACCEPTED:append = " non-commercial_netperf "
# chromium
LICENSE_FLAGS_ACCEPTED:append = " commercial_ffmpeg commercial_x264 "
# vlc
LICENSE_FLAGS_ACCEPTED:append = " commercial_mpeg2dec commercial_vlc "
# mpd
LICENSE_FLAGS_ACCEPTED:append = " commercial_mpg123 "
# libmad
LICENSE_FLAGS_ACCEPTED:append = " commercial_libmad "
# gstreamer1.0-libav
LICENSE_FLAGS_ACCEPTED:append = " commercial_gstreamer1.0-libav "
# gstreamer1.0-omx
LICENSE_FLAGS_ACCEPTED:append = " commercial_gstreamer1.0-omx "
# omapfbplay
LICENSE_FLAGS_ACCEPTED:append = " commercial_lame "
# libomxil
LICENSE_FLAGS_ACCEPTED:append = " commercial_libomxil "
# xfce
LICENSE_FLAGS_ACCEPTED:append = " commercial_packagegroup-xfce-multimedia commercial_xfce4-mpc-plugin"
LICENSE_FLAGS_ACCEPTED:append = " commercial_xfmpc commercial_mpd "
LICENSE_FLAGS_ACCEPTED:append = " commercial_mpv "
# epiphany
LICENSE_FLAGS_ACCEPTED:append = " commercial_faad2 "
# gstreamer ugly plugins
LICENSE_FLAGS_ACCEPTED:append = " commercial_gstreamer1.0-plugins-ugly "
# sox tools
LICENSE_FLAGS_ACCEPTED:append = " commercial_sox "
#
# For full debugging image uncomment following
#
#EXTRA_IMAGE_FEATURES:append = " tools-debug dbg-pkgs"
#
# For native development on device uncomment following
#
#EXTRA_IMAGE_FEATURES:append = " tools-sdk dev-pkgs"
#
# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to
# track the version of this file when it was generated. This can safely be ignored if
# this doesn't mean anything to you.
CONF_VERSION = "2"