Skip to content

Commit 4fb3a49

Browse files
committed
build: Create modules tar.gz as well as tar.bz2
1 parent 9b50953 commit 4fb3a49

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

build/scripts/container-build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ if [[ "$1" == "kernel" ]]; then
124124
rc=$?
125125
if [[ $rc -eq 0 ]]; then
126126
tar -cjf /output/modules.tar.bz2 -C $mod_path lib
127+
tar -czf /output/modules.tar.gz -C $mod_path lib
127128
fi
128129
else
129130
echo "## Modules not configured"

build/scripts/prune.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ case "$task" in
2727
mkdir -p "artifacts"
2828
for path in .config vmlinux System.map arch/powerpc/boot/zImage include/config/kernel.release \
2929
arch/powerpc/kernel/asm-offsets.s arch/powerpc/boot/uImage modules.tar.bz2 \
30-
sparse.log log.txt
30+
modules.tar.gz sparse.log log.txt
3131
do
3232
if [[ -e "$path" ]]; then
3333
mv "$path" artifacts/

0 commit comments

Comments
 (0)