-
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.
yaml --- r: 260927 b: refs/heads/master c: efe836a h: refs/heads/master i: 260925: 4ad1279 260923: a8237e2 260919: 87b5d8a 260911: 2f60d26 260895: 80469a2 260863: a1ab433 v: v3
- Loading branch information
Tetsuo Handa
authored and
James Morris
committed
Jun 28, 2011
1 parent
c7901be
commit bd72944
Showing
5 changed files
with
109 additions
and
11 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 @@ | ||
--- | ||
refs/heads/master: b22b8b9fd90eecfb7133e56b4e113595f09f4492 | ||
refs/heads/master: efe836ab2b514ae7b59528af36d452978b42d266 |
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 +1,48 @@ | ||
obj-y = audit.o common.o domain.o file.o gc.o group.o load_policy.o memory.o mount.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.4.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 $@ | ||
|
||
$(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
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