Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions menu.d/centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ source functions.sh
cd "${LOCAL_PATH}" || exit 1

grub_option SP_CENTOS_ARCH Architecture \
x86_64 x86_64 "For most modern PCs" \
i386 i386 "For very old PCs"
x86_64 x86_64 "For most modern PCs" \
i386 i386 "For very old PCs" \
aarch64 aarch64 "For ARM64 / AARCH64 devices"

IFS=' ' read -r -a mirrors <<< "${CENTOS_MIRROR_BACKUP}"
grub_mirror_selector SP_CENTOS_MIRROR "${CENTOS_MIRROR}" "${mirrors[@]}"
Expand Down
3 changes: 2 additions & 1 deletion menu.d/debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ cd "${LOCAL_PATH}" || exit 1

grub_option SP_DEBIAN_ARCH Architecture \
amd64 amd64 "For most modern PCs" \
i386 i386 "For very old PCs"
i386 i386 "For very old PCs" \
arm64 arm64 "For ARM64 / AARCH64 devices"

IFS=' ' read -r -a mirrors <<< "${DEBIAN_MIRROR_BACKUP}"
grub_mirror_selector SP_DEBIAN_MIRROR "${DEBIAN_MIRROR}" "${mirrors[@]}"
Expand Down
2 changes: 2 additions & 0 deletions prepare.d/freebsd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
source functions.sh
cd "${LOCAL_PATH}" || exit 1

# TODO: Add arm64 arch

count=0
while read -r ver; do
for arch in amd64 i386; do
Expand Down