On 2008-04-23, Frank B <[EMAIL PROTECTED]> wrote:
> Here's the original kernel (security) Makefile (from Mandriva 2008.1
> Spring)

If you change it so that it looks like the following, it should work
fine. Notice that I added 2 lines with DAZUKO in them. It is important
that these lines are added exactly in those positions.

If you need AppArmor, the second DAZUKO line should come _after_
AppArmor.

John Ogness


#
# Makefile for the kernel security code
#

obj-$(CONFIG_KEYS)                      += keys/
subdir-$(CONFIG_SECURITY_SELINUX)       += selinux
subdir-$(CONFIG_SECURITY_DAZUKO)        += dazuko

# if we don't select a security model, use the default capabilities
ifneq ($(CONFIG_SECURITY),y)
obj-y           += commoncap.o
endif

# Object file lists
obj-$(CONFIG_SECURITY)                  += security.o dummy.o inode.o
# Must precede capability.o in order to stack properly.
obj-$(CONFIG_SECURITY_SELINUX)          += selinux/built-in.o
obj-$(CONFIG_SECURITY_DAZUKO)           += commoncap.o dazuko/built-in.o
obj-$(CONFIG_SECURITY_APPARMOR)         += commoncap.o apparmor/
obj-$(CONFIG_SECURITY_CAPABILITIES)     += commoncap.o capability.o
obj-$(CONFIG_SECURITY_ROOTPLUG)         += commoncap.o root_plug.o

-- 
Dazuko Maintainer


_______________________________________________
Dazuko-help mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/dazuko-help

Reply via email to