aboutsummaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen3/include/dtv-dvd-control.inc
blob: 1a79c07b852f8c4a8327c5180b274497b1fa0436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# USE_DTV for ISDB-T DTV Software Package
USE_DTV = "${@'1' if 'dtv' in '${DISTRO_FEATURES}' else '0'}"

# USE_DVD for DVD Core-Middleware for Linux
USE_DVD = "${@'1' if 'dvd' in '${DISTRO_FEATURES}' else '0'}"

# This function to prevent build DTV feature with E3
python do_dtv_checking () {
    soc = d.getVar('SOC_FAMILY')
    soc = soc.split(':')[1]
    use_dtv = d.getVar('USE_DTV')
    if use_dtv == "1" and soc == "r8a77990":
        bb.fatal("E3 (SoC: r8a77990) does not support SSP, please disable DTV feature in your local configuration")
}

addtask dtv_checking before do_configure after do_patch