diff options
author | John Klug <john.klug@multitech.com> | 2019-08-22 14:56:36 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2019-11-11 11:34:00 -0600 |
commit | 616abc46b3c8cf97401efc69f12b73e51de0b452 (patch) | |
tree | d98fb0d412e0fe195a37c62be29ce6793c45a9a9 /recipes-core | |
parent | b31ec5d0f8d4fee31ac0f2ddd55dcd273eaa2e9e (diff) | |
download | meta-mlinux-616abc46b3c8cf97401efc69f12b73e51de0b452.tar.gz meta-mlinux-616abc46b3c8cf97401efc69f12b73e51de0b452.tar.bz2 meta-mlinux-616abc46b3c8cf97401efc69f12b73e51de0b452.zip |
Add missing /run/radio configuration file
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/multitech/config/99_radio | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-core/multitech/config/99_radio b/recipes-core/multitech/config/99_radio new file mode 100644 index 0000000..a37346c --- /dev/null +++ b/recipes-core/multitech/config/99_radio @@ -0,0 +1,24 @@ +# This configuration file lists filesystem objects that should get verified +# during startup and be created if missing. +# +# Every line must either be a comment starting with # +# or a definition of format: +# <type> <owner> <group> <mode> <path> <linksource> +# where the items are separated by whitespace ! +# +# <type> : d|f|l : (d)irectory|(f)ile|(l)ink +# +# A linking example: +# l root root 0777 /var/test /tmp/testfile +# f root root 0644 /var/test none +# +# Understanding links: +# When populate-volatile is to verify/create a directory or file, it will first +# check it's existence. If a link is found to exist in the place of the target, +# the path of the target is replaced with the target the link points to. +# Thus, if a link is in the place to be verified, the object will be created +# in the place the link points to instead. +# This explains the order of "link before object" as in the example above, where +# a link will be created at /var/test pointing to /tmp/testfile and due to this +# link the file defined as /var/test will actually be created as /tmp/testfile. +d root dialout 2777 /run/radio none |