Compare commits

...

2 commits
main ... r10

2 changed files with 26 additions and 1 deletions

View file

@ -1 +1,5 @@
### Riscv kickstarts can be found in subsequent branches.
### Kickstarts
Kickstart repo based on https://git.resf.org/sig_altarch/rockygenericaarch64

21
createimage.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/bash
KSFILE=$1
KSNAME=${KSFILE%.ks}
if [ ! -f "${KSFILE}" ]; then
echo
echo "SYNOPSIS"
echo " $0 <KICKSTARTFILE>"
echo
echo "EXAMPLE"
echo " $0 Rocky-9-aarch64-Generic-Minimal-4.ks"
echo
exit 1
fi
set -x
appliance-creator -c ${KSFILE} \
-d -v --logfile /var/tmp/${KSNAME}.log \
--cache /root/cache --no-compress \
-o /var/tmp/appoutput --format raw --name ${KSNAME} | tee /var/tmp/${KSNAME}.log.2