blob: 97c4854e3da76281ea0538014da510283036836a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Using H3, needs to be defined before pulling in salvator-x as a base
SOC_FAMILY = "r8a7795"
require conf/machine/salvator-x.conf
# This is a bit of a hack, we add salvator-x to avoid having to
# bbappend various recipes to update COMPATIBLE_MACHINE. Ideally,
# we would want the ordering salvator-x:<machine>, but that is
# non-trivial to accomplish and not absolutely necessary for our
# expected use.
MACHINEOVERRIDES_append = ":salvator-x"
# Reference hardware has USB3
MACHINE_FEATURES_append = " usb3"
KERNEL_DEVICETREE_append = " renesas/r8a77951-agl-refhw.dtb"
|