[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Dazuko-help] Cannot patch dazuko under Mandriva 200.1 (Spring)?
From: |
John Ogness |
Subject: |
Re: [Dazuko-help] Cannot patch dazuko under Mandriva 200.1 (Spring)? |
Date: |
Fri, 25 Apr 2008 21:59:24 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1 (berkeley-unix) |
On 2008-04-23, Frank B <address@hidden> 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