Jeff Mahoney
4f3a31cc82
- Update to version 0.6.4.2~git86.b5931f7: * cleanup: go mod tidy - Fix vendoring of replaced modules. - Only require libtsan0 on x86_64 - Only attempt to copy vmlinux.h if /sys/kernel/btf/vmlinux doesn't exist - Fix building of libbpfgo on i586 - Update to version 0.6.4.2~git84.1b38fda: * Clean up libbpfgo mess * libbpfgo: use forked repo for fully static builds * libbpfgo: sync to v0.4.4-libbpf-1.0.1 * contrib/kafka-humio-gateway: add new debug option for noisy events * contrib/kafka-humio-gateway: backoff and retry for metadata * vql/server/kafka: connect sarama logging to velociraptor logging * vql/server/kafka: add exponential backoff (limited to 30s) for metadata retries * vql/server/kafka: set appropriate ClientID * libbpfgo: add selftest to build so testcases work * cronsnoop: rework testcases to use t.TempDir * cronsnoop: move external dependencies to end of import list * SSHLogin: require _TRANSPORT != 'kernel' from watch_journal() - Update to version 0.6.4.2~git67.85b608e: * clients/host-info.js: add MAC addresses to client dashboard * linux: Add ability to interrogate system and network configuration * SUSE: Add docker-compose environment * SUSE: add Docker files * Add Linux.Sys.Bash to Server.Monitor.Shell artifact * api/authenticators: fix handling of missing oauthstate cookie for OAUTH2 * kafka-humio-gateway: add sample config file * Updating the NewFiles and ProcessStatuses Artifacts OBS-URL: https://build.opensuse.org/request/show/1035327 OBS-URL: https://build.opensuse.org/package/show/security:sensor/velociraptor?expand=0&rev=22
24 lines
690 B
Diff
24 lines
690 B
Diff
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: skip git submodule import for OBS build
|
|
|
|
For OBS builds, the git submodule is imported during obs_scm.
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
Makefile | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -61,8 +61,8 @@ ifeq ($(BUILD_LIBBPFGO), 1)
|
|
vql/linux/chattrsnoop/chattrsnoop.bpf.o
|
|
|
|
$(LIBBPFGO_DIR): always-check
|
|
- echo "INFO: updating submodule 'libbpfgo'"
|
|
- $(GIT) submodule update --init --recursive $@
|
|
+# echo "INFO: updating submodule 'libbpfgo'"
|
|
+# $(GIT) submodule update --init --recursive $@
|
|
|
|
$(LIBBPF_LIB): $(LIBBPFGO_DIR)
|
|
make -C $(LIBBPFGO_DIR) libbpfgo-full-static
|