[yocto] [meta-security][PATCH 2/2] apparmor: use its own initscript and service files

2021-06-23 Thread Yi Zhao
Use initscript and service files provided by apparmor. Signed-off-by: Yi Zhao --- recipes-mac/AppArmor/apparmor_3.0.1.bb| 33 +-- ...x-hardcoded-installation-directories.patch | 51 ...pparmor.debian-add-missing-functions.patch | 57 recipes-mac/AppArmor/files/apparmor

[yocto] [meta-security][PATCH 1/2] apparmor: upgrade 3.0 -> 3.0.1

2021-06-23 Thread Yi Zhao
Drop backport patches: 0001-apparmor-fix-manpage-order.patch 0001-libapparmor-add-missing-include-for-socklen_t.patch 0002-libapparmor-add-aa_features_new_from_file-to-public-.patch 0003-libapparmor-add-_aa_asprintf-to-private-symbols.patch 0001-aa_status-Fix-build-issue-with-musl.patch

[yocto] [meta-rockchip][PATCH 2/4] wic console device and baud

2021-06-23 Thread Trevor Woerner
Take the console device and baud settings from the MACHINE configurations and reuse them in the wic files. This reduces duplication and eliminates a potential source of mistakes. Signed-off-by: Trevor Woerner --- conf/machine/include/rockchip-defaults.inc | 2 +- wic/firefly-rk3288.wks

[yocto] [meta-rockchip][PATCH 3/4] machine common include cleanup

2021-06-23 Thread Trevor Woerner
Break out the conf/machine/include/rockchip-defaults.inc into: - conf/machine/include/rockchip-defaults.inc - conf/machine/include/rockchip-32.inc - conf/machine/include/rockchip-64.inc - conf/machine/include/rockchip-wic.inc Re-organize the machine and SoC configurations to make use of these

[yocto] [meta-rockchip][PATCH 4/4] wic/wks cleanup

2021-06-23 Thread Trevor Woerner
Instead of having SoC-specific wks files and machine-specific wks files, it turns out all we need is one rockchip-specific wks file; any differences can be specified with variables. Boot tested with the following boards (core-image-base): - tinker-board - rock-pi-e - rock64 - nanopi-m4-2gb -

[yocto] [meta-rockchip][PATCH 1/4] centralize console settings

2021-06-23 Thread Trevor Woerner
The console settings (baud and device) are scrambled and spread throughout the MACHINE configurations. Consolidate them and set defaults which are then overridden only as required. Signed-off-by: Trevor Woerner --- conf/machine/include/nanopi-m4.inc | 2 --

Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings

2021-06-23 Thread Khem Raj
On Wed, Jun 23, 2021 at 8:25 AM Trevor Woerner wrote: > > The console settings (baud and device) are scrambled and spread throughout the > MACHINE configurations. Consolidate them and set defaults which are then > overridden only as required. > > Signed-off-by: Trevor Woerner > --- >

Re: [yocto] [PATCH][meta-rockchip] rock-pi-e: use common rk3328.inc

2021-06-23 Thread Trevor Woerner
Applied to meta-rockchip master. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#53950): https://lists.yoctoproject.org/g/yocto/message/53950 Mute This Topic: https://lists.yoctoproject.org/mt/83634157/21656 Group Owner:

Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings

2021-06-23 Thread Yann Dirson
- Mail original - > De: "Khem Raj" > À: "Trevor Woerner" > Cc: "Yocto-mailing-list" > Envoyé: Mercredi 23 Juin 2021 11:32:57 > Objet: Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings > > On Wed, Jun 23, 2021 at 8:25 AM Trevor Woerner > wrote: > > > > The console

[yocto] [yocto-autobuilder2][dunfell] config.py: enable opensuse152 workers for dunfell

2021-06-23 Thread Steve Sakoman
Signed-off-by: Steve Sakoman --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 2565bd7..03ccfba 100644 --- a/config.py +++ b/config.py @@ -150,7 +150,7 @@ all_workers = workers + workers_bringup + workers_buildperf + workers_arm

Re: [yocto] [meta-rockchip][PATCH] qtbase: Add needed bbappend for rk3399 SOCs

2021-06-23 Thread Trevor Woerner
Applied to meta-rockchip master. Thanks! -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#53955): https://lists.yoctoproject.org/g/yocto/message/53955 Mute This Topic: https://lists.yoctoproject.org/mt/83547078/21656 Group Owner:

Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings

2021-06-23 Thread Trevor Woerner
On Wed 2021-06-23 @ 08:10:07 PM, ydir...@free.fr wrote: > > De: "Khem Raj" > > À: "Trevor Woerner" > > Cc: "Yocto-mailing-list" > > Envoyé: Mercredi 23 Juin 2021 11:32:57 > > Objet: Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings > > > +RK_CONSOLE_BAUD = "115200" > > >

Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings

2021-06-23 Thread Yann Dirson
> De: "Trevor Woerner" > À: ydir...@free.fr > Cc: "Khem Raj" , "Yocto-mailing-list" > > Envoyé: Mercredi 23 Juin 2021 14:51:39 > Objet: Re: [yocto] [meta-rockchip][PATCH 1/4] centralize console settings > > On Wed 2021-06-23 @ 08:10:07 PM, ydir...@free.fr wrote: > > > De: "Khem Raj" > > > À:

[yocto][PATCH] models: Add a new error type for check-layer

2021-06-23 Thread Thomas Perrot
Defines a new ErrorType and ERROR_TYPE_CHOICES, in order to support this kind of errors. [YOCTO #14208] Signed-off-by: Thomas Perrot --- Post/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Post/models.py b/Post/models.py index 3fa66f2198a4..b7a913c82359 100644 ---