added my Recipes

This commit is contained in:
2024-07-11 14:16:35 +02:00
parent 38bc4f53ac
commit 09b621d929
7118 changed files with 525762 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
From d67e93ada37d7237983fd10894c18b92f4243d50 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 18 Mar 2017 08:51:45 -0700
Subject: [PATCH] Makefile: Append instead of overriding LDFLAGS
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 28557ff..deed94c 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ OPT_FLAGS := -O2
# for older versions of grsecurity, comment the above line and uncomment the below:
#OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo "-O2" ; else echo "-O2 -m64" ; fi)
CFLAGS := $(OPT_FLAGS) -fPIE -Wcast-qual -DGRSEC_DIR=\"$(GRSEC_DIR)\" -D_LARGEFILE64_SOURCE
-LDFLAGS= -pie
+LDFLAGS+= -pie
INSTALL = /usr/bin/install -c
# FHS
--
2.12.0

View File

@@ -0,0 +1,61 @@
From fbf7b9e5a8e2978acd5b0a7a8311912a080ee9b9 Mon Sep 17 00:00:00 2001
From: Qian Lei <qianl.fnst@cn.fujitsu.com>
Date: Thu, 18 Dec 2014 11:09:01 +0800
Subject: [PATCH] Makefile: remove strip
Avoid QA error by removing strip from Makefile
[...]
ERROR: QA Issue: File '/sbin/gradm' from gradm was already stripped,
this will prevent future debugging! [already-stripped]
ERROR: QA Issue: File '/sbin/grlearn' from gradm was already stripped,
this will prevent future debugging! [already-stripped]
[...]
Upstream-Status: Pending
Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com>
---
Makefile | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index 6c33fee..3570a4e 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,6 @@ MKNOD=/bin/mknod
#CC=/usr/bin/diet /usr/bin/gcc
CC=/usr/bin/gcc
FIND=/usr/bin/find
-STRIP=/usr/bin/strip
LIBS := $(shell if [ "`uname -m`" != "sparc64" -a "`uname -m`" != "x86_64" ]; then echo "-lfl" ; else echo "" ; fi)
OPT_FLAGS := -O2
# for older versions of grsecurity, comment the above line and uncomment the below:
@@ -140,15 +139,12 @@ install: $(GRADM_BIN) gradm.8 policy grlearn
@mkdir -p $(DESTDIR)/sbin
@echo "Installing gradm..."
@$(INSTALL) -m 0755 $(GRADM_BIN) $(DESTDIR)/sbin
- @$(STRIP) $(DESTDIR)/sbin/$(GRADM_BIN)
@if [ -f $(GRADM_PAM) ] ; then \
echo "Installing gradm_pam..." ; \
$(INSTALL) -m 4755 $(GRADM_PAM) $(DESTDIR)/sbin ; \
- $(STRIP) $(DESTDIR)/sbin/$(GRADM_PAM) ; \
fi
@echo "Installing grlearn..."
@$(INSTALL) -m 0700 grlearn $(DESTDIR)/sbin
- @$(STRIP) $(DESTDIR)/sbin/grlearn
@mkdir -p -m 700 $(DESTDIR)$(GRSEC_DIR)
@if [ ! -f $(DESTDIR)$(GRSEC_DIR)/policy ] ; then \
if [ -f $(DESTDIR)$(GRSEC_DIR)/acl ] ; then \
@@ -168,6 +164,7 @@ install: $(GRADM_BIN) gradm.8 policy grlearn
$(MKNOD) -m 0622 $(DESTDIR)/dev/grsec c 1 13 ; \
fi \
fi
+ @mkdir -p $(DESTDIR)/etc/udev/rules.d
@if [ -d $(DESTDIR)/etc/udev/rules.d ] ; then \
echo "ACTION!=\"add|change\", GOTO=\"permissions_end\"" > $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
echo "KERNEL==\"grsec\", MODE=\"0622\"" >> $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
--
1.8.3.1

View File

@@ -0,0 +1,69 @@
From 12bc62ac26df012fc143913b6e046a3cf5127db2 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 23 Apr 2022 09:20:49 -0700
Subject: [PATCH] make: Define SBINDIR flag
Provides a facility to control install locations of /sbin elements from
environment
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
Makefile | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
index deed94c..9190fe9 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,7 @@ MKNOD=/bin/mknod
CC=/usr/bin/gcc
FIND=/usr/bin/find
LIBS := $(shell if [ "`uname -m`" != "sparc64" -a "`uname -m`" != "x86_64" ]; then echo "-lfl" ; else echo "" ; fi)
+SBINDIR=/sbin
OPT_FLAGS := -O2
# for older versions of grsecurity, comment the above line and uncomment the below:
#OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo "-O2" ; else echo "-O2 -m64" ; fi)
@@ -136,15 +137,15 @@ lex.learn_pass1.o: lex.learn_pass1.c learn_pass1.tab.h
lex.learn_pass2.o: lex.learn_pass2.c learn_pass2.tab.h
install: $(GRADM_BIN) gradm.8 policy grlearn
- @mkdir -p $(DESTDIR)/sbin
+ @mkdir -p $(DESTDIR)$(SBINDIR)
@echo "Installing gradm..."
- @$(INSTALL) -m 0755 $(GRADM_BIN) $(DESTDIR)/sbin
+ @$(INSTALL) -m 0755 $(GRADM_BIN) $(DESTDIR)$(SBINDIR)
@if [ -f $(GRADM_PAM) ] ; then \
echo "Installing gradm_pam..." ; \
- $(INSTALL) -m 4755 $(GRADM_PAM) $(DESTDIR)/sbin ; \
+ $(INSTALL) -m 4755 $(GRADM_PAM) $(DESTDIR)$(SBINDIR) ; \
fi
@echo "Installing grlearn..."
- @$(INSTALL) -m 0700 grlearn $(DESTDIR)/sbin
+ @$(INSTALL) -m 0700 grlearn $(DESTDIR)$(SBINDIR)
@mkdir -p -m 700 $(DESTDIR)$(GRSEC_DIR)
@if [ ! -f $(DESTDIR)$(GRSEC_DIR)/policy ] ; then \
if [ -f $(DESTDIR)$(GRSEC_DIR)/acl ] ; then \
@@ -170,15 +171,15 @@ install: $(GRADM_BIN) gradm.8 policy grlearn
echo "KERNEL==\"grsec\", MODE=\"0622\"" >> $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
echo "LABEL=\"permissions_end\"" >> $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
fi
- @if [ -f $(DESTDIR)/sbin/udevadm ] ; then \
- $(DESTDIR)/sbin/udevadm trigger --action=change ; \
+ @if [ -f $(DESTDIR)$(SBINDIR)/udevadm ] ; then \
+ $(DESTDIR)$(SBINDIR)/udevadm trigger --action=change ; \
fi
@echo "Installing gradm manpage..."
@mkdir -p $(DESTDIR)$(MANDIR)/man8
@$(INSTALL) -m 0644 gradm.8 $(DESTDIR)$(MANDIR)/man8/$(GRADM_BIN).8
- @if [ -x /sbin/$(GRADM_BIN) ] ; then \
+ @if [ -x $(SBINDIR)/$(GRADM_BIN) ] ; then \
if [ -z $(DESTDIR) ] && [ ! -f $(GRSEC_DIR)/pw ] ; then \
- /sbin/$(GRADM_BIN) -P ; \
+ $(SBINDIR)/$(GRADM_BIN) -P ; \
fi \
fi
@true
--
2.36.0

View File

@@ -0,0 +1,51 @@
SUMMARY = "Administration program for the grsecurity RBAC syste"
DESCRIPTION = "\
gradm is the userspace RBAC parsing and authentication program for \
grsecurity grsecurity aims to be a complete security system. gradm \
performs several tasks for the RBAC system including authenticated \
via a password to the kernel and parsing rules to be passed to the \
kernel"
HOMEPAGE = "http://grsecurity.net/index.php"
SECTION = "admin"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://LICENSE;md5=4641e94ec96f98fabc56ff9cc48be14b"
DEPENDS = "flex-native bison-native ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
SRC_URI = "http://grsecurity.net/stable/${BP}.tar.gz \
file://0001-Makefile-remove-strip.patch \
file://0001-Makefile-Append-instead-of-overriding-LDFLAGS.patch \
file://0001-make-Define-SBINDIR-flag.patch \
"
SRC_URI[sha256sum] = "2459290f367a47c8a1ce4ea2ec08359799ea33dc15ed4436439596ce88284fb9"
S = "${WORKDIR}/gradm"
inherit autotools-brokensep
do_compile() {
oe_runmake 'CC=${CC}' \
'LIBS=' \
'OPT_FLAGS=${CFLAGS}' \
'LLEX=${STAGING_BINDIR_NATIVE}/lex' \
'FLEX=${STAGING_BINDIR_NATIVE}/flex' \
'BISON=${STAGING_BINDIR_NATIVE}/bison' \
${@bb.utils.contains('DISTRO_FEATURES', 'pam', ' ', 'nopam', d)}
}
do_install() {
oe_runmake 'CC=${CC}' \
'DESTDIR=${D}' \
'SBINDIR=${base_sbindir}' \
'LIBS=' \
'LLEX=${STAGING_BINDIR_NATIVE}/lex' \
'FLEX=${STAGING_BINDIR_NATIVE}/flex' \
'BISON=${STAGING_BINDIR_NATIVE}/bison' \
install
# The device nodes are generated by postinstall or udev
rm -rf ${D}/dev
}
pkg_postinst_ontarget:${PN}() {
/bin/mknod -m 0622 /dev/grsec c 1 13
}