diff options
author | Jeff Hatch <jhatch@multitech.com> | 2021-02-04 11:04:26 -0600 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2021-02-04 11:04:26 -0600 |
commit | 01cab41d268fd7a25464878c735d6bc43f8833e7 (patch) | |
tree | a92bd2ad7ab6665b8314e8e23d4b6273eab5a6ef /recipes-core | |
parent | ee2141f2cd55a5d842ffde85cf6c37b26fe3c3df (diff) | |
parent | 6fc414b361f2a18de6892b1eb0f87ec3aeabd97e (diff) | |
download | meta-mlinux-01cab41d268fd7a25464878c735d6bc43f8833e7.tar.gz meta-mlinux-01cab41d268fd7a25464878c735d6bc43f8833e7.tar.bz2 meta-mlinux-01cab41d268fd7a25464878c735d6bc43f8833e7.zip |
Merge branch 'vp/master-dunfell' into dunfell
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/udev/eudev/init | 2 | ||||
-rw-r--r-- | recipes-core/useradd/useradd.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes-core/udev/eudev/init b/recipes-core/udev/eudev/init index bd716b0..d941401 100644 --- a/recipes-core/udev/eudev/init +++ b/recipes-core/udev/eudev/init @@ -57,7 +57,7 @@ case "$1" in # the automount rule for udev needs /tmp directory available, as /tmp is a symlink # to /var/tmp which in turn is a symlink to /var/volatile/tmp, we need to make sure # /var/volatile/tmp directory to be available. - mkdir -p /var/volatile/tmp + mkdir -m 1777 -p /var/volatile/tmp # Cache handling. # A list of files which are used as a criteria to judge whether the udev cache could be reused. diff --git a/recipes-core/useradd/useradd.bb b/recipes-core/useradd/useradd.bb index d229a2f..653c597 100644 --- a/recipes-core/useradd/useradd.bb +++ b/recipes-core/useradd/useradd.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Add mtadm user for security purposes" SECTION = "mtadm" PR = "r4" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=b97a012949927931feb7793eee5ed924 \ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" S = "${WORKDIR}" |