mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2024-11-08 06:28:23 +01:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "meta-rpi-diya"
|
|
BBFILE_PATTERN_meta-rpi-diya = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-rpi-diya = "11"
|
|
|
|
LAYERDEPENDS_meta-rpi-diya = "core raspberrypi"
|
|
LAYERSERIES_COMPAT_meta-rpi-diya = "mickledore"
|
|
|
|
PACKAGE_CLASSES = "package_ipk"
|
|
INHERIT += "rm_work"
|
|
|
|
EXTRA_IMAGE_FEATURES ?= " ssh-server-dropbear read-only-rootfs "
|
|
# ssh-server-dropbear
|
|
DISTRO_FEATURES:append := " vc4-gfx opengl "
|
|
# DISTRO_FEATURES:append := " vc4-gfx opengl directfb "
|
|
MACHINE ?= "raspberrypi0-2w-64"
|
|
|
|
WKS_FILE="rpi.wks.in"
|
|
ROOT_HOME = "/root"
|
|
|
|
#MACHINE = "raspberrypi3-64"
|
|
#MACHINE = "raspberrypi2"
|
|
|
|
#RPI_USE_U_BOOT:raspberrypi = "0"
|
|
RPI_USE_U_BOOT = "0"
|
|
RPI_USE_wS_28_DPI_LCD = "1"
|
|
# enable usb boot in uboot
|
|
ENABLE_USB_U_BOOT = "0"
|
|
ENABLE_UART = "0"
|
|
DISABLE_SPLASH = "1"
|
|
VIDEO_CAMERA = "1"
|
|
DISABLE_RPI_BOOT_LOGO = "1"
|
|
ENABLE_SPI_BUS = "0"
|
|
ENABLE_I2C = "0"
|
|
KERNEL_MODULE_AUTOLOAD:rpi += " i2c-dev "
|
|
|
|
VC4DTBO = "vc4-kms-v3d"
|
|
|
|
# KERNEL_DEVICETREE:append = " overlays/vc4-kms-dpi-generic.dtbo "
|
|
|
|
|
|
RPI_EXTRA_CONFIG += "${@['','\n\
|
|
dtoverlay=vc4-kms-v3d \n\
|
|
dtoverlay=vc4-kms-DPI-28inch \n\
|
|
dtoverlay=waveshare-28dpi-3b-4b \n\
|
|
dtoverlay=waveshare-28dpi-3b \n\
|
|
dtoverlay=waveshare-28dpi-4b \n']['${RPI_USE_wS_28_DPI_LCD}' == '1']}"
|
|
|
|
RPI_EXTRA_CONFIG += '\n\
|
|
start_x=1 # essential \n\
|
|
#dtparam=audio=on \n\
|
|
gpu_mem=128 # at least, or maybe more if you wish \n\
|
|
disable_camera_led=1 # optional \n\
|
|
' |