blob: 4a0d6cf0f9eae152a776be36bab1a2a82c236212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# whatever poky does
require conf/distro/poky.conf
# but call it schulung-poky
DISTRO = "schulung-poky"
# and keep named compatibility with poky
DISTROOVERRIDES = "poky"
# debian/jessie works great
SANITY_TESTED_DISTROS = "DebianGNULinux-8"
# if this distribution is designed for internal use, it may
# be appropriate to set PREMIRRORS here for internal mirrors
#PREMIRRORS ?= ""
# set preferred kernel and version for this distribution
PREFERRED_PROVIDER_virtual/kernel ?= "linux-basic"
PREFERRED_VERSION_virtual/kernel ?= "4.4"
|