mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
14 lines
519 B
Bash
Executable File
14 lines
519 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
# Ideally should be obtained from common.
|
|
# But the paths there are absolute, and get recorded by in zip.
|
|
# and generating relative paths seems hard:
|
|
# https://stackoverflow.com/questions/2564634/convert-absolute-path-into-relative-path-given-a-current-directory-using-bash
|
|
outfile="out/images-$(git log -1 --format="%H").zip"
|
|
rm -f "$outfile"
|
|
for arch in x86_64 arm aarch64; do
|
|
img_dir="out/${arch}/buildroot/images"
|
|
rm -f "${img_dir}/rootfs.ext2"
|
|
zip -r "$outfile" "${img_dir}"
|
|
done
|