Skip to content

Commit

Permalink
add kernel source tree copy scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Oct 11, 2024
1 parent d274690 commit 6ac442f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kernel-copy-gs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

devices=(raviole bluejay pantah lynx tangorpro felix)
rm -rf ${devices[@]}
for dir in ${devices[@]}; do
cp -a gs $dir
done
7 changes: 7 additions & 0 deletions kernel-copy-zuma
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

devices=(shusky akita)
rm -rf ${devices[@]}
for dir in ${devices[@]}; do
cp -a zuma $dir
done
7 changes: 7 additions & 0 deletions kernel-copy-zumapro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

devices=(caimito comet)
rm -rf ${devices[@]}
for dir in ${devices[@]}; do
cp -a zumapro $dir
done

0 comments on commit 6ac442f

Please sign in to comment.