- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from YoeDistro/kraj/qt5-images
Add qt5 images
- 2025.01
- 2024.12
- 2024.11
- 2024.10
- 2024.09
- 2024.08
- 2024.07
- 2024.06
- 2024.05
- 2024.04
- 2024.03
- 2024.02
- 2024.01
- 2023.12
- 2023.11
- 2023.10
- 2023.09
- 2023.08
- 2023.07
- 2023.06
- 2023.05
- 2023.04
- 2023.03
- 2023.02
- 2023.01
- 2022.12
- 2022.11
- 2022.10
- 2022.09
- 2022.08
- 2022.07
- 2022.06
- 2022.05
- 2022.04
- 2022.03
- 2022.02
- 2021.12
- 2021.11
- 2021.10
- 2021.09
- 2021.08
- 2021.07
- 2021.06
- 2021.05
- 2021.04
- 2021.03
- 2021.02
- 2021.01
- 3.3.0-beta
- 3.2.0
- 3.2.0-rc.1
- 3.2.0-beta
- 3.2.0-alpha
- 3.1.2
Showing
10 changed files
with
109 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
require initramfs-image.bb | ||
|
||
PACKAGE_INSTALL += "\ | ||
psplash \ | ||
" | ||
|
||
IMAGE_FEATURES = "splash" | ||
|
||
export IMAGE_BASENAME = "initramfs-image-splash" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
QT5APPS += " \ | ||
cinematicexperience \ | ||
qt5-demo-extrafiles \ | ||
qt5everywheredemo \ | ||
qt5nmapcarousedemo \ | ||
qt5ledscreen \ | ||
qt5nmapper \ | ||
qtsmarthome \ | ||
quitbattery \ | ||
quitindicators \ | ||
" | ||
QT5BASE = "\ | ||
qtbase \ | ||
qtbase-plugins \ | ||
qtbase-tools \ | ||
qtmultimedia \ | ||
qtmultimedia-plugins \ | ||
qtmultimedia-qmlplugins \ | ||
qtsvg \ | ||
qtsvg-plugins \ | ||
qtsensors \ | ||
qtsystems \ | ||
qtsystems-tools \ | ||
qtsystems-qmlplugins \ | ||
qtscript \ | ||
qtgraphicaleffects-qmlplugins \ | ||
qtconnectivity-qmlplugins \ | ||
qtlocation-plugins \ | ||
qtlocation-qmlplugins \ | ||
qtdeclarative \ | ||
qtdeclarative-qmlplugins \ | ||
qtdeclarative-plugins \ | ||
" | ||
QTWEBKIT ??= "\ | ||
qtquick1 \ | ||
qtquick1-qmlplugins \ | ||
qtquick1-plugins \ | ||
qtwebkit \ | ||
qtwebkit-qmlplugins \ | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Yoe QT5 sample image | ||
|
||
LICENSE = "MIT" | ||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" | ||
|
||
require yoe-simple-image.bb | ||
require qt5.inc | ||
|
||
CONFLICT_DISTRO_FEATURES = "wayland x11" | ||
|
||
REQUIRED_DISTRO_FEATURES = "opengl" | ||
|
||
IMAGE_INSTALL += " \ | ||
${QT5APPS} \ | ||
${QT5BASE} \ | ||
" | ||
export IMAGE_BASENAME = "yoe-qt5-eglfs-image" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Yoe QT5/Wayland sample image | ||
|
||
LICENSE = "MIT" | ||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" | ||
|
||
require yoe-simple-image.bb | ||
require qt5.inc | ||
|
||
REQUIRED_DISTRO_FEATURES = "wayland" | ||
|
||
IMAGE_FEATURES += "splash" | ||
|
||
CORE_IMAGE_BASE_INSTALL += " \ | ||
weston weston-init \ | ||
weston-examples \ | ||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'weston-xwayland', '', d)} \ | ||
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland-plugins', '', d)} \ | ||
${QT5APPS} \ | ||
${QT5BASE} \ | ||
" | ||
export IMAGE_BASENAME = "yoe-qt5-wayland-image" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Yoe QT5/X11 sample image | ||
|
||
LICENSE = "MIT" | ||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" | ||
|
||
require yoe-simple-image.bb | ||
require qt5.inc | ||
|
||
REQUIRED_DISTRO_FEATURES = "x11" | ||
|
||
IMAGE_FEATURES += "splash x11-base" | ||
|
||
IMAGE_INSTALL += " \ | ||
${QT5APPS} \ | ||
${QT5BASE} \ | ||
" | ||
export IMAGE_BASENAME = "yoe-qt5-x11-image" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
# BEC sample image | ||
# Yoe sample image | ||
|
||
LICENSE = "MIT" | ||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" | ||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
|
||
IMAGE_PREPROCESS_COMMAND = "rootfs_update_timestamp" | ||
inherit distro_features_check | ||
|
||
IMAGE_FEATURES += "ssh-server-dropbear" | ||
IMAGE_FEATURES += "package-management" | ||
require recipes-core/images/core-image-base.bb | ||
IMAGE_FEATURES += "ssh-server-dropbear package-management hwcodecs" | ||
|
||
IMAGE_INSTALL += " \ | ||
packagegroup-core-boot \ | ||
packagegroup-basic \ | ||
network-hotplug \ | ||
" | ||
export IMAGE_BASENAME = "yoe-simple-image" | ||
|
||
inherit core-image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters