From 2b1456887b0ca3b9d1e140ab44d13bd41dcbf642 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 7 Dec 2016 10:17:46 +0100 Subject: tools/create-image.sh: use net.core.bpf_jit_enable = 1 bpf_jit_enable = 2 causes printing of all programs to console. Produces lots of output and is not very useful. Disable it. --- tools/create-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/create-image.sh') diff --git a/tools/create-image.sh b/tools/create-image.sh index 9fa12c4bc..e0533ca93 100755 --- a/tools/create-image.sh +++ b/tools/create-image.sh @@ -17,7 +17,7 @@ echo 'T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100' | sudo tee -a wheezy/etc/ printf '\nauto eth0\niface eth0 inet dhcp\n' | sudo tee -a wheezy/etc/network/interfaces echo 'debugfs /sys/kernel/debug debugfs defaults 0 0' | sudo tee -a wheezy/etc/fstab echo 'debug.exception-trace = 0' | sudo tee -a wheezy/etc/sysctl.conf -echo "net.core.bpf_jit_enable = 2" | sudo tee -a wheezy/etc/sysctl.conf +echo "net.core.bpf_jit_enable = 1" | sudo tee -a wheezy/etc/sysctl.conf echo "net.core.bpf_jit_harden = 2" | sudo tee -a wheezy/etc/sysctl.conf sudo mkdir -p wheezy/root/.ssh/ rm -rf ssh -- cgit mrf-deployment