mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2024-11-08 06:28:23 +01:00
67 lines
1.8 KiB
Plaintext
67 lines
1.8 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 "
|
|
# disable readonly fs 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_DWC2_PERIPHERAL = "1"
|
|
ENABLE_DWC2_HOST = "1"
|
|
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,nocomposite,noaudio"
|
|
|
|
KERNEL_DEVICETREE:append = " overlays/vc4-kms-dpi-generic.dtbo overlays/dpi24.dtbo "
|
|
|
|
|
|
RPI_EXTRA_CONFIG += "${@['','\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\
|
|
'
|
|
|
|
# extra kernel CMDLINE_RNDIS option
|
|
# CMDLINE_RNDIS += ""
|
|
# accept license for wifi and bluetooth firmware
|
|
LICENSE_FLAGS_ACCEPTED = "synaptics-killswitch" |