mirror of
git://git.yoctoproject.org/poky.git
synced 2025-08-22 00:42:05 +02:00

Drop VOLATILE_LOG_DIR, use FILESYSTEM_PERMS_TABLES instead. By default, it contains 'files/fs-perms-volatile-log.txt', which means volatile log is enabled. User can disable volatile log by remove 'files/fs-perms-volatile-log.txt' from FILESYSTEM_PERMS_TABLES. (From OE-Core rev: 91128c6517066715f2afe6b46aa3206c7cf3653e) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
# This file contains a list of files and directories with known permissions.
|
|
# It is used by the packaging class to ensure that the permissions, owners and
|
|
# group of listed files and directories are in sync across the system.
|
|
#
|
|
# The format of this file
|
|
#
|
|
#<path> <mode> <uid> <gid> <walk> <fmode> <fuid> <fgid>
|
|
#
|
|
# or
|
|
#
|
|
#<path> link <target>
|
|
#
|
|
# <path>: directory path
|
|
# <mode>: mode for directory
|
|
# <uid>: uid for directory
|
|
# <gid>: gid for directory
|
|
# <walk>: recursively walk the directory? true or false
|
|
# <fmode>: if walking, new mode for files
|
|
# <fuid>: if walking, new uid for files
|
|
# <fgid>: if walking, new gid for files
|
|
# <target>: turn the directory into a symlink point to target
|
|
#
|
|
# in mode, uid or gid, a "-" means don't change any existing values
|
|
#
|
|
# /usr/src 0755 root root false - - -
|
|
# /usr/share/man 0755 root root true 0644 root root
|
|
|
|
# Note: all standard config directories are automatically assigned "0755 root root false - - -"
|
|
|
|
# Documentation should always be corrected
|
|
|
|
# Items from base-files
|
|
# Links
|
|
${localstatedir}/log link volatile/log
|