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

Diff for: kernel-copy-gs

+7
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

Diff for: kernel-copy-zuma

+7
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

Diff for: kernel-copy-zumapro

+7
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)