Skip to content

Commit 7d5f5d4

Browse files
committed
add kernel source tree copy scripts
1 parent d274690 commit 7d5f5d4

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

kernel-copy-gs

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

kernel-copy-zuma

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

kernel-copy-zumapro

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

0 commit comments

Comments
 (0)