From aa226713cfcbfe0a2696e8e272b973da9ee0b8a7 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Wed, 2 Feb 2022 15:25:48 +0100 Subject: [PATCH] script to build dcp kernel --- dcp.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dcp.sh diff --git a/dcp.sh b/dcp.sh new file mode 100644 index 0000000..ca36f9a --- /dev/null +++ b/dcp.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +set -x +set -e + +unset LC_CTYPE +unset LANG + +build_linux() +{ +( + test -d linux || git clone https://github.com/jannau/linux -b asahi-dcp + cd linux + git fetch + git reset --hard asahi-dcp; git clean -f -x -d + curl -s https://tg.st/u/5nly | git am - + curl -s https://tg.st/u/0wM8 | git am - + curl -s https://tg.st/u/m1-dcp-2022-01-30-config > .config + make olddefconfig + make -j 16 bindeb-pkg +) +} + +mkdir -p build/dcp +cd build/dcp + +build_linux -- 2.39.2