SELinux refpolicy详解(11)

2023-12-13 05:15:04

接前一篇文章:SELinux refpolicy详解(10)

三、refpolicy内容详解

上一回讲解完了refpolicy源码根目录下的INSTALL文件。本回继续讲解源码根目录下的其它文件。第四个来讲解refpolicy源码根目录下的Rules.monolithic文件。

4. Rules.monolithic

文件路径:refpolicy源码根目录/Rules.monolithic。

文件内容如下:

########################################
#
# Rules and Targets for building monolithic policies
#

# determine the policy version and current kernel version if possible
pv := $(shell $(CHECKPOLICY) -V |cut -f 1 -d ' ')
kv := $(shell $(policyvers))

# dont print version warnings if we are unable to determine
# the currently running kernel's policy version
ifeq "$(kv)" ""
	kv := $(pv)
endif

# dont print version warnings if we specified a lower version than the kernel supports
ifneq "$(OUTPUT_POLICY)"

文章来源:https://blog.csdn.net/phmatthaus/article/details/134791091
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。