Skip to content

Commit 6ac442f

Browse files
committed
add kernel source tree copy scripts
1 parent d274690 commit 6ac442f

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

kernel-copy-gs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
devices=(raviole bluejay pantah lynx tangorpro felix)
4+
rm -rf ${devices[@]}
5+
for dir in ${devices[@]}; do
6+
cp -a gs $dir
7+
done

kernel-copy-zuma

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
devices=(shusky akita)
4+
rm -rf ${devices[@]}
5+
for dir in ${devices[@]}; do
6+
cp -a zuma $dir
7+
done

kernel-copy-zumapro

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
devices=(caimito comet)
4+
rm -rf ${devices[@]}
5+
for dir in ${devices[@]}; do
6+
cp -a zumapro $dir
7+
done

0 commit comments

Comments
 (0)