Skip to content

Commit e804251

Browse files
committed
add standard bash setup for kernel copy scripts
1 parent 610f294 commit e804251

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

kernel-copy-gs

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22

3+
set -o errexit -o nounset -o pipefail
4+
35
devices=(raviole bluejay pantah lynx tangorpro felix)
46
parallel 'rm -rf {} && cp -a gs {}' ::: ${devices[@]}

kernel-copy-microdroid

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22

3+
set -o errexit -o nounset -o pipefail
4+
35
devices=(microdroid-arm64 microdroid-x86_64)
46
parallel 'rm -rf {} && cp -a 6.6 {}' ::: ${devices[@]}

kernel-copy-zuma

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22

3+
set -o errexit -o nounset -o pipefail
4+
35
devices=(shusky akita)
46
parallel 'rm -rf {} && cp -a zuma {}' ::: ${devices[@]}

kernel-copy-zumapro

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22

3+
set -o errexit -o nounset -o pipefail
4+
35
devices=(caimito comet)
46
parallel 'rm -rf {} && cp -a zumapro {}' ::: ${devices[@]}

0 commit comments

Comments
 (0)