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 7d5f5d4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions kernel-copy-gs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

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

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

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

0 comments on commit 7d5f5d4

Please sign in to comment.