blob: 3d798768242cd6f0a2f6335e9ec8cc7bf555baca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;; SPDX-FileCopyrightText: © 2024 Dominick Grift <dominick.grift@defensec.nl>
;; SPDX-License-Identifier: Unlicense
(block mtd
(filecon "/dev/mtd[0-9]+" char stordev_context)
(filecon "/dev/mtd[0-9]+ro" char stordev_context)
(filecon "/dev/mtdblock[0-9]+" block stordev_context)
(filecon "/dev/ubi[0-9]+_[0-9]+" char stordev_context)
(filecon "/dev/ubi_ctrl" char stordev_context)
(filecon "/dev/ubiblock[0-9]+_[0-9]+" block stordev_context)
(blockinherit .stordev.template))
|