Check that files that we want to update do exist

On arm64 the set of available files is different because we don't use
isolinux and win32-loader.
merge-requests/16/head
Raphaël Hertzog 4 years ago
parent 71ee6a3001
commit ef71f0e3e9
No known key found for this signature in database
GPG Key ID: 03881DABEBC29AB9

@ -10,18 +10,25 @@ ARCHES=$5
cd $CDDIR
fix_branding() {
sed -i -e 's|Debian GNU/Linux|Kali Linux|g' \
-e 's|Kali GNU/Linux|Kali Linux|g' \
-e 's|Debian kali-rolling|Kali Rolling|g' \
-e 's|Debian|Kali|g' \
-e 's|DEBIAN|KALI|g' \
"$@"
}
# Rebrand Debian into Kali
# The theme doesn't exist on arm64...
if [ "$ARCHES" != "arm64" ]; then
sed -i -e 's|Debian GNU/Linux|Kali Linux|g' \
-e 's|Kali GNU/Linux|Kali Linux|g' \
-e 's|Debian kali-rolling|Kali Rolling|g' \
-e 's|Debian|Kali|g' \
-e 's|DEBIAN|KALI|g' \
../boot$DISKNUM/isolinux/menu.cfg \
../boot$DISKNUM/isolinux/*.txt \
boot/grub/theme/* \
autorun.inf
if [ -e ../boot$DISKNUM/isolinux/menu.cfg ]; then
fix_branding ../boot$DISKNUM/isolinux/menu.cfg \
../boot$DISKNUM/isolinux/*.txt
fi
if [ -d boot/grub/theme ] && [ -s boot/grub/theme ]; then
fix_branding boot/grub/theme/*
fi
if [ -e autorun.inf ]; then
fix_branding autorun.inf
fi
# Replace Debian specific documentation

Loading…
Cancel
Save