Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 1 | # Default Xilinx BSP Machine settings |
| 2 | |
| 3 | MACHINE_FEATURES_BACKFILL_CONSIDERED += "rtc" |
| 4 | |
| 5 | # File System Configuration |
| 6 | IMAGE_FSTYPES ?= "tar.gz cpio cpio.gz.u-boot" |
| 7 | |
| 8 | # Kernel Configuration |
| 9 | XILINX_DEFAULT_KERNEL := "linux-xlnx" |
| 10 | XILINX_DEFAULT_KERNEL_microblaze := "linux-yocto" |
| 11 | XILINX_DEFAULT_KERNEL_zynqmp := "linux-yocto" |
| 12 | PREFERRED_PROVIDER_virtual/kernel ??= "${XILINX_DEFAULT_KERNEL}" |
| 13 | |
| 14 | # U-Boot Configuration |
| 15 | XILINX_DEFAULT_UBOOT := "u-boot-xlnx" |
| 16 | XILINX_DEFAULT_UBOOT_zynqmp := "u-boot" |
| 17 | PREFERRED_PROVIDER_virtual/bootloader ??= "${XILINX_DEFAULT_UBOOT}" |
| 18 | PREFERRED_PROVIDER_virtual/boot-bin ??= "${PREFERRED_PROVIDER_virtual/bootloader}" |
| 19 | |
| 20 | UBOOT_SUFFIX ?= "img" |
| 21 | UBOOT_SUFFIX_zynqmp ?= "bin" |
| 22 | UBOOT_SUFFIX_microblaze ?= "bin" |
| 23 | |
| 24 | UBOOT_BINARY ?= "u-boot.${UBOOT_SUFFIX}" |
| 25 | UBOOT_ELF ?= "u-boot" |
| 26 | UBOOT_ELF_aarch64 ?= "u-boot.elf" |
| 27 | |
| 28 | XSERVER ?= " \ |
| 29 | xserver-xorg \ |
| 30 | xf86-input-evdev \ |
| 31 | xf86-input-mouse \ |
| 32 | xf86-input-keyboard \ |
| 33 | xf86-video-fbdev \ |
| 34 | ${XSERVER_EXT} \ |
| 35 | " |
| 36 | |
| 37 | XSERVER_EXT ?= "" |
| 38 | XSERVER_EXT_zynqmp ?= "xf86-video-armsoc" |
| 39 | |
| 40 | # For MicroBlaze default all microblaze machines to use GDB 7.7.1 (for gdbserver/gdb) |
| 41 | PREFERRED_VERSION_gdb_microblaze = "7.7.1" |
| 42 | |