aboutsummaryrefslogtreecommitdiff
path: root/utils/audit
Commit message (Collapse)AuthorAge
* audit: move from packages to openwrtMarius Dinu2024-04-12
| | | | | | This package is joined with libaudit from openwrt base packages. Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16Andre Heider2023-04-08
| | | | | | | See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with PKG_BUILD_FLAGS:=no-mips16" on the main repository. Signed-off-by: Andre Heider <a.heider@gmail.com>
* audit: remove host buildEneas U de Queiroz2022-05-20
| | | | | | | | | | | The audit package in the packages feed share the same sources as the libaudit package in the base repo. libaudit performs a host build, used only by libsemanage in base. There is no package depending on 'audit/host', so we can remove it to avoid possible confusion. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* audit: avoid interferece with base libaudit buildEneas U de Queiroz2022-05-20
| | | | | | | | | | Both audit in the packages feed and libaudito from the base repo use the same sources. Have 'audit' use a different build directory than 'libaudit' package to avoid interference between them. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* audit: Fix compilation with kernel 5.15Eneas U de Queiroz2022-05-20
| | | | | | | | | | Linux 5.15 does not have the linux/ipx.h header. The patch is a partial cherry-pick (skipped ChangeLog) of upstream commit 6b09724c6 ("Make IPX packet interpretation dependent on the ipx header file existing"). Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* audit: fix dependency error when libev also selectedW. Michael Petullo2020-09-12
| | | | | | | | Auditd seems to build its own libev if the library is not already present; otherwise it uses the system-installed library. This adds libev as a dependency to ensure a consistent build. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* audit: new packageThomas Petazzoni2020-09-11
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> [strip library after adding it to openwrt repository] Signed-off-by: W. Michael Petullo <mike@flyn.org>