-
-
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 #465 from YoeDistro/kraj/master
merge meta-yoe into yoedistro repo
- Loading branch information
Showing
121 changed files
with
8,688 additions
and
19 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
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
Submodule bitbake
updated
4 files
+21 −129 | lib/bb/COW.py | |
+6 −1 | lib/bb/server/process.py | |
+206 −12 | lib/bb/tests/cow.py | |
+17 −4 | lib/bb/ui/knotty.py |
Submodule meta-arm
updated
31 files
Submodule meta-freescale
updated
8 files
Submodule meta-freescale-3rdparty
updated
4 files
+0 −1 | conf/machine/imx6sl-warp.conf | |
+0 −2 | conf/machine/nitrogen8m.conf | |
+0 −2 | conf/machine/nitrogen8mm.conf | |
+0 −2 | conf/machine/nitrogen8mn.conf |
Submodule meta-intel
updated
6 files
Submodule meta-openembedded
updated
135 files
Submodule meta-qcom
updated
19 files
Submodule meta-qt5
updated
14 files
Submodule meta-raspberrypi
updated
5 files
Submodule meta-rust
updated
7 files
Submodule meta-ti
updated
6 files
Submodule meta-yoe
deleted from
d1d3c2
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 @@ | ||
YOE Distribution Policy Layer based on OpenEmbedded Build Infrastructure |
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,43 @@ | ||
IMAGE_FEATURES += "empty-root-password allow-empty-password" | ||
|
||
IMAGE_PREPROCESS_COMMAND += "do_systemd_network ; " | ||
|
||
do_systemd_network () { | ||
install -d ${IMAGE_ROOTFS}${sysconfdir}/systemd/network | ||
cat << EOF > ${IMAGE_ROOTFS}${sysconfdir}/systemd/network/10-en.network | ||
[Match] | ||
Name=en* | ||
|
||
[Network] | ||
DHCP=yes | ||
|
||
[DHCP] | ||
RouteMetric=10 | ||
ClientIdentifier=mac | ||
EOF | ||
|
||
cat << EOF > ${IMAGE_ROOTFS}${sysconfdir}/systemd/network/11-eth.network | ||
[Match] | ||
Name=eth* | ||
|
||
[Network] | ||
DHCP=yes | ||
|
||
[DHCP] | ||
RouteMetric=10 | ||
ClientIdentifier=mac | ||
EOF | ||
|
||
cat << EOF > ${IMAGE_ROOTFS}${sysconfdir}/systemd/network/12-wl.network | ||
[Match] | ||
Name=wl* | ||
|
||
[Network] | ||
DHCP=yes | ||
|
||
[DHCP] | ||
RouteMetric=20 | ||
ClientIdentifier=mac | ||
EOF | ||
|
||
} |
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,2 @@ | ||
TCLIBC = "baremetal" | ||
|
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,7 @@ | ||
# enable mdev/busybox for init | ||
DISTRO_FEATURES_BACKFILL_CONSIDERED_append = " systemd" | ||
VIRTUAL-RUNTIME_dev_manager = "busybox-mdev" | ||
VIRTUAL-RUNTIME_init_manager = "busybox" | ||
VIRTUAL-RUNTIME_initscripts = "initscripts" | ||
VIRTUAL-RUNTIME_keymaps = "keymaps" | ||
VIRTUAL-RUNTIME_login_manager = "busybox" |
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,9 @@ | ||
DISTRO_FEATURES_remove = " x11 wayland" | ||
|
||
# Use bcm userland graphics driver | ||
DISABLE_VC4GRAPHICS = "1" | ||
|
||
# Use rdk backend for eglfs | ||
PREFERRED_PROVIDER_virtual/wpebackend = "wpebackend-rdk" | ||
|
||
PACKAGECONFIG_pn-wpebackend-rdk_rpi = "rpi" |
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 @@ | ||
TCLIBC = "glibc" |
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 @@ | ||
TCLIBC = "musl" |
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,2 @@ | ||
TCLIBC = "newlib" | ||
|
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,6 @@ | ||
# Use systemd for system initialization | ||
DISTRO_FEATURES_append = " systemd" | ||
DISTRO_FEATURES_BACKFILL_CONSIDERED_append = " sysvinit" | ||
VIRTUAL-RUNTIME_init_manager = "systemd" | ||
VIRTUAL-RUNTIME_initscripts = "systemd-compat-units" | ||
VIRTUAL-RUNTIME_login_manager = "shadow-base" |
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,6 @@ | ||
# Use sysvinit for system initialization | ||
DISTRO_FEATURES_append = " sysvinit" | ||
DISTRO_FEATURES_BACKFILL_CONSIDERED_append = " systemd" | ||
VIRTUAL-RUNTIME_init_manager = "sysvinit" | ||
VIRTUAL-RUNTIME_initscripts = "initscripts" | ||
VIRTUAL-RUNTIME_login_manager = "busybox" |
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 @@ | ||
DISTRO_FEATURES_remove = "pam" |
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,3 @@ | ||
DISTRO_FEATURES_append = " wayland" | ||
|
||
PACKAGECONFIG_append_pn-cog_rpi = " drm" |
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,2 @@ | ||
DISTRO_FEATURES_append = " x11" | ||
DISTRO_FEATURES_remove = "wayland" |
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,2 @@ | ||
require yoe.inc | ||
require baremetal.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require busyboxinit.inc | ||
require eglfs.inc |
4 changes: 4 additions & 0 deletions
4
sources/meta-yoe/conf/distro/yoe-glibc-busyboxinit-wayland.inc
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require busyboxinit.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require busyboxinit.inc | ||
require x11.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require systemd.inc | ||
require eglfs.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require systemd.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require systemd.inc | ||
require x11.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require sysvinit.inc | ||
require eglfs.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require sysvinit.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require glibc.inc | ||
require sysvinit.inc | ||
require x11.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require busyboxinit.inc | ||
require eglfs.inc |
4 changes: 4 additions & 0 deletions
4
sources/meta-yoe/conf/distro/yoe-musl-busyboxinit-wayland.inc
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require busyboxinit.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require busyboxinit.inc | ||
require x11.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require systemd.inc | ||
require eglfs.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require systemd.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require systemd.inc | ||
require x11.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require sysvinit.inc | ||
require eglfs.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require sysvinit.inc | ||
require wayland.inc |
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,4 @@ | ||
require yoe.inc | ||
require musl.inc | ||
require sysvinit.inc | ||
require x11.inc |
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,2 @@ | ||
require yoe.inc | ||
require newlib.inc |
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,2 @@ | ||
YOE_PROFILE ??= "yoe-glibc-sysvinit-wayland" | ||
require ${YOE_PROFILE}.inc |
Oops, something went wrong.