DivestOS/Scripts/LineageOS-14.1/Patch_CVE.sh

16 lines
262 B
Bash
Raw Normal View History

#!/bin/bash
#Copyright (c) 2015-2017 Spot Communications, Inc.
#Attempts to patch kernels to be more secure
echo "Patching CVEs..."
2017-10-29 06:43:38 +00:00
cd $base
for patcher in $cveScripts/*.sh; do
echo "Running " $patcher;
source $patcher;
done;
cd $base
echo "Patched CVEs!"