Compare commits

..

3 Commits

Author SHA1 Message Date
Dustin 3520dc0148 fixup! fixup! wip: vc4 gpu support
dustin/photoframe2/pipeline/pr-main This commit looks good Details
2024-12-31 13:11:34 -06:00
Dustin 06838ab0a4 ci: Prevent concurrent builds
The `disableConcurrentBuilds` pipeline option tells Jenkins to force
subsequent builds _of the same job_ to wait in queue until the one
running has completed.  This is sufficient when there is only one
branch/project in development at a time.  In order to prevent multiple
projects from running simultaneously, we need to acquire a global lock;
all projects need to have this same option in order for it to be
effective.
2024-12-31 13:10:57 -06:00
Dustin 9c8a2172af fixup! fixup! wip: vc4 gpu support 2024-12-31 12:57:04 -06:00
3 changed files with 16 additions and 0 deletions

5
ci/Jenkinsfile vendored
View File

@ -8,6 +8,11 @@ pipeline {
}
}
options {
disableConcurrentBuilds()
lock 'aimee-os'
}
stages {
stage('Prepare') {
steps {

View File

@ -14,4 +14,5 @@ dtoverlay=miniuart-bt
dtparam i2c_arm=on
dtoverlay=vc4-kms-v3d
dtoverlay=vc4-kms-dsi-ili9881-7inch

View File

@ -45,13 +45,23 @@ CONFIG_IPV6=y
CONFIG_IPV6_SIT=m
CONFIG_IPV6_SIT_6RD=m
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_EDT_FT5X06=m
CONFIG_TOUCHSCREEN_RASPBERRYPI_FW=m
CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m
CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_V2=m
# CONFIG_MEDIA_CEC_SUPPORT is not set
# CONFIG_MEDIA_SUPPORT is not set
CONFIG_DRM=y
CONFIG_DRM_PANEL_SIMPLE=m
CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=y
CONFIG_DRM_TOSHIBA_TC358762=m
CONFIG_V3D=m
CONFIG_VC4=m
CONFIG_DRM_SIMPLEDRM=y
CONFIG_BACKLIGHT_CLASS_DEVICE=m
CONFIG_BACKLIGHT_RPI=m
CONFIG_SOUND=m
CONFIG_SND=m