From 7d5f5d4ab098afa4811eefe4b882169916fbf6f9 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 10 Oct 2024 21:58:27 -0400 Subject: [PATCH] add kernel source tree copy scripts --- kernel-copy-gs | 6 ++++++ kernel-copy-zuma | 6 ++++++ kernel-copy-zumapro | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100755 kernel-copy-gs create mode 100755 kernel-copy-zuma create mode 100755 kernel-copy-zumapro diff --git a/kernel-copy-gs b/kernel-copy-gs new file mode 100755 index 00000000..c0133a9a --- /dev/null +++ b/kernel-copy-gs @@ -0,0 +1,6 @@ +#!/bin/bash + +devices=(raviole bluejay pantah lynx tangorpro felix) +for dir in ${devices[@]}; do + cp -a gs $dir +done diff --git a/kernel-copy-zuma b/kernel-copy-zuma new file mode 100755 index 00000000..3ed2f299 --- /dev/null +++ b/kernel-copy-zuma @@ -0,0 +1,6 @@ +#!/bin/bash + +devices=(shusky akita) +for dir in ${devices[@]}; do + cp -a zuma $dir +done diff --git a/kernel-copy-zumapro b/kernel-copy-zumapro new file mode 100755 index 00000000..314f54f2 --- /dev/null +++ b/kernel-copy-zumapro @@ -0,0 +1,6 @@ +#!/bin/bash + +devices=(caimito comet) +for dir in ${devices[@]}; do + cp -a zumapro $dir +done