summaryrefslogtreecommitdiffstats
path: root/configs/bsp.ref
blob: 60dfe9eff238d95d06c802e2ec4b6de29081338c (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
includes:
  - file: ptxdist.ref

ptxdist_debug_pci:
  description: |
    In DistroKit, we have platforms with and without PCI.
    For x86_64, we don't want to have lspci, although PCI is available in the
    kernel.
  variants:
    - condition: kconfig.PTXPlatformConfig()['ARCH_X86']
      value: False
    - condition: kconfig.PTXPlatformConfig()['ARCH_ARM64']
      value: False
    - value: True

kernel_dtb_partitions:
  description: |
    A fixed-partitions node is needed for qemu on mips.
  variants:
    - condition: kconfig.PTXPlatformConfig()['ARCH_MIPS']
      value: True
    - value: False

# vim: filetype=yaml shiftwidth=2 expandtab