forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tomoyo-cleanup' of git://git.kernel.org/pub/scm/linux/k…
…ernel/git/mmarek/kbuild into next
- Loading branch information
Showing
4 changed files
with
15 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
builtin-policy.h | ||
policy/ | ||
policy/*.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,15 @@ | ||
obj-y = audit.o common.o condition.o domain.o environ.o file.o gc.o group.o load_policy.o memory.o mount.o network.o realpath.o securityfs_if.o tomoyo.o util.o | ||
|
||
$(obj)/policy/profile.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/profile.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/exception_policy.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating a default policy/exception_policy.conf | ||
@echo initialize_domain /sbin/modprobe from any >> $@ | ||
@echo initialize_domain /sbin/hotplug from any >> $@ | ||
|
||
$(obj)/policy/domain_policy.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/domain_policy.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/manager.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/manager.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/stat.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/stat.conf | ||
@touch $@ | ||
|
||
$(obj)/builtin-policy.h: $(obj)/policy/profile.conf $(obj)/policy/exception_policy.conf $(obj)/policy/domain_policy.conf $(obj)/policy/manager.conf $(obj)/policy/stat.conf | ||
@echo Generating built-in policy for TOMOYO 2.5.x. | ||
@echo "static char tomoyo_builtin_profile[] __initdata =" > $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/profile.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_exception_policy[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/exception_policy.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_domain_policy[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/domain_policy.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_manager[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/manager.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_stat[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/stat.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@mv $@.tmp $@ | ||
targets += builtin-policy.h | ||
define do_policy | ||
echo "static char tomoyo_builtin_$(1)[] __initdata ="; \ | ||
$(objtree)/scripts/basic/bin2c <$(firstword $(wildcard $(obj)/policy/$(1).conf $(srctree)/$(src)/policy/$(1).conf.default) /dev/null); \ | ||
echo ";" | ||
endef | ||
quiet_cmd_policy = POLICY $@ | ||
cmd_policy = ($(call do_policy,profile); $(call do_policy,exception_policy); $(call do_policy,domain_policy); $(call do_policy,manager); $(call do_policy,stat)) >$@ | ||
|
||
$(obj)/builtin-policy.h: $(wildcard $(obj)/policy/*.conf $(src)/policy/*.conf.default) FORCE | ||
$(call if_changed,policy) | ||
|
||
$(obj)/common.o: $(obj)/builtin-policy.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
initialize_domain /sbin/modprobe from any | ||
initialize_domain /sbin/hotplug from any |