diff --git a/files/debootstrap-1.0.126-1-any.pkg.tar.zst b/files/debootstrap-1.0.126-1-any.pkg.tar.zst new file mode 100644 index 0000000000000000000000000000000000000000..54c537efdfb720f5fd037a0e11569600f1ff593f Binary files /dev/null and b/files/debootstrap-1.0.126-1-any.pkg.tar.zst differ diff --git a/files/grub_unbuntu22-04/grub-multi-install b/files/grub_unbuntu22-04/grub-multi-install new file mode 100755 index 0000000000000000000000000000000000000000..5c2ad09b0159908c18f59c5493c67700c0179605 --- /dev/null +++ b/files/grub_unbuntu22-04/grub-multi-install @@ -0,0 +1,419 @@ +#!/bin/bash +# +# Install to multiple ESPs + +set -e + +# Most of this is copy-paste from grub postinst, sigh. + +. /usr/share/debconf/confmodule + +# shamelessly stolen from ucf: +# +# Load our templates, just in case our template has +# not been loaded or the Debconf DB lost or corrupted +# since then. +db_x_loadtemplatefile "$(dpkg-query --control-path grub-common templates)" grub-common + +############################################################################### +# COPY FROM POSTINST +############################################################################### +# This only works on a Linux system with udev running. This is probably the +# vast majority of systems where we need any of this, though, and we fall +# back reasonably gracefully if we don't have it. +cached_available_ids= +available_ids() +{ + local id path + + if [ "$cached_available_ids" ]; then + echo "$cached_available_ids" + return + fi + + [ -d /dev/disk/by-id ] || return + cached_available_ids="$( + for path in /dev/disk/by-id/*; do + [ -e "$path" ] || continue + printf '%s %s\n' "$path" "$(readlink -f "$path")" + done | sort -k2 -s -u | cut -d' ' -f1 + )" + echo "$cached_available_ids" +} + +# Returns non-zero and no output if no mapping can be found. +device_to_id() +{ + local id + for id in $(available_ids); do + if [ "$(readlink -f "$id")" = "$(readlink -f "$1")" ]; then + echo "$id" + return 0 + fi + done + # Fall back to the plain device name if there's no by-id link for it. + if [ -e "$1" ]; then + echo "$1" + return 0 + fi + return 1 +} + +# for Linux +sysfs_size() +{ + local num_sectors sector_size size + # Try to find out the size without relying on a partitioning tool being + # installed. This isn't too hard on Linux 2.6 with sysfs, but we have to + # try a couple of variants on detection of the sector size. + if [ -e "$1/size" ]; then + num_sectors="$(cat "$1/size")" + sector_size=512 + if [ -e "$1/queue/logical_block_size" ]; then + sector_size="$(cat "$1/queue/logical_block_size")" + elif [ -e "$1/queue/hw_sector_size" ]; then + sector_size="$(cat "$1/queue/hw_sector_size")" + fi + size="$(expr "$num_sectors" \* "$sector_size" / 1000 / 1000)" + fi + [ "$size" ] || size='???' + echo "$size" +} + +# for kFreeBSD +camcontrol_size() +{ + local num_sectors sector_size size= + + if num_sectors="$(camcontrol readcap "$1" -q -s -N)"; then + sector_size="$(camcontrol readcap "$1" -q -b)" + size="$(expr "$num_sectors" \* "$sector_size" / 1000 / 1000)" + fi + + [ "$size" ] || size='???' + echo "$size" +} + +maybe_udevadm() +{ + if which udevadm >/dev/null 2>&1; then + udevadm "$@" || true + fi +} + +# Parse /proc/mounts and find out the mount for the given device. +# The device must be a real device in /dev, not a symlink to one. +get_mounted_device() +{ + mountpoint="$1" + cat /proc/mounts | while read -r line; do + set -f + set -- $line + set +f + if [ "$2" = "$mountpoint" ]; then + echo "$1" + break + fi + done +} + +############################################################################### +# New or modified helpers +############################################################################### + +# Fixed: Return nothing if the argument is empty +get_mountpoint() +{ + local relpath boot_mountpoint + + if [ -z "$1" ]; then + return + fi + + relpath="$(grub-mkrelpath "$1")" + boot_mountpoint="${1#$relpath}" + echo "${boot_mountpoint:-/}" +} + + +# Returns value in $RET, like a debconf command. +# +# Merged version of describe_disk and describe_partition, as disks can't be +# valid ESPs on their own, so we can't render them as an entry. +describe_efi_system_partition() +{ + local disk part id path sysfs_path diskbase partbase size + local disk_basename disk_size model + disk="$1" + part="$2" + id="$3" + path="$4" + + # BEGIN: Stolen from describe_disk + model= + case $(uname -s) in + Linux) + sysfs_path="$(maybe_udevadm info -n "$disk" -q path)" + if [ -z "$sysfs_path" ]; then + sysfs_path="/block/$(printf %s "${disk#/dev/}" | sed 's,/,!,g')" + fi + disk_size="$(sysfs_size "/sys$sysfs_path")" + + model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^ID_MODEL=//p')" + if [ -z "$model" ]; then + model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^DM_NAME=//p')" + if [ -z "$model" ]; then + model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^MD_NAME=//p')" + if [ -z "$model" ] && which dmsetup >/dev/null 2>&1; then + model="$(dmsetup info -c --noheadings -o name "$disk" 2>/dev/null || true)" + fi + fi + fi + ;; + GNU/kFreeBSD) + disk_basename=$(basename "$disk") + disk_size="$(camcontrol_size "$disk_basename")" + model="$(camcontrol inquiry "$disk_basename" | sed -ne "s/^pass0: <\([^>]*\)>.*/\1/p")" + ;; + esac + + [ "$model" ] || model='???' + + # END: Stolen from describe_disk + + sysfs_path="$(maybe_udevadm info -n "$part" -q path)" + if [ -z "$sysfs_path" ]; then + diskbase="${disk#/dev/}" + diskbase="$(printf %s "$diskbase" | sed 's,/,!,g')" + partbase="${part#/dev/}" + partbase="$(printf %s "$partbase" | sed 's,/,!,g')" + sysfs_path="/block/$diskbase/$partbase" + fi + size="$(sysfs_size "/sys$sysfs_path")" + + db_subst grub-efi/partition_description DEVICE "$part" + db_subst grub-efi/partition_description SIZE "$size" + db_subst grub-efi/partition_description PATH "$path" + db_subst grub-efi/partition_description DISK_MODEL "$model" + db_subst grub-efi/partition_description DISK_SIZE "$disk_size" + db_metaget grub-efi/partition_description description +} + + +# Parse /proc/mounts and find out the mount for the given device. +# The device must be a real device in /dev, not a symlink to one. +find_mount_point() +{ + real_device="$1" + cat /proc/mounts | while read -r line; do + set -f + set -- $line + set +f + if [ "$1" = "$real_device" -a "$3" = "vfat" ]; then + echo "$2" + break + fi + done +} + +# Return all devices that are a valid ESP +usable_efi_system_partitions() +{ + local last_partition path partition partition_id + local ID_PART_ENTRY_TYPE ID_PART_ENTRY_SCHEME + + last_partition= + ( + for partition in /dev/disk/by-id/*; do + ID_PART_ENTRY_TYPE="" + ID_PART_ENTRY_SCHEME="" + eval "$(udevadm info -q property -n "$partition" | grep -E '^ID_PART_ENTRY_(TYPE|SCHEME)=')" + if [ -z "$ID_PART_ENTRY_TYPE" -o -z "$ID_PART_ENTRY_SCHEME" -o \ + \( "$ID_PART_ENTRY_SCHEME" != gpt -a "$ID_PART_ENTRY_SCHEME" != dos \) -o \ + \( "$ID_PART_ENTRY_SCHEME" = gpt -a "$ID_PART_ENTRY_TYPE" != c12a7328-f81f-11d2-ba4b-00a0c93ec93b \) -o \ + \( "$ID_PART_ENTRY_SCHEME" = dos -a "$ID_PART_ENTRY_TYPE" != 0xef \) ]; then + continue + fi + # unify the partition id + partition_id="$(device_to_id "$partition" || true)" + real_device="$(readlink -f "$partition")" + path="$(find_mount_point $real_device)" + echo "$path:$partition_id" + done + ) | sort -t: -k2 -u +} + +############################################################################### +# MAGIC SCRIPT +############################################################################### +FALLBACK_MOUNTPOINT=/var/lib/grub/esp + +# Initial install/upgrade from /boot/efi? +db_fget grub-efi/install_devices seen +seen="$RET" + +# Get configured value +question=grub-efi/install_devices +priority=high +db_get grub-efi/install_devices +valid=1 + +# We either migrate /boot/efi over, or we check if we have invalid devices +if [ -z "$RET" ] && [ "$seen" != "true" ]; then + echo "Trying to migrate /boot/efi into esp config" + esp="$(get_mounted_device /boot/efi)" + if [ "$esp" ]; then + esp="$(device_to_id "$esp")" + fi + if [ "$esp" ]; then + db_set grub-efi/install_devices "$esp" + db_fset grub-efi/install_devices seen true + RET="$esp" + fi +else + for device in $RET; do + if [ ! -e "${device%,}" ]; then + valid=0 + break + fi + done +fi + +# If /boot/efi points to a device that's not in the list, trigger the +# install_devices_disks_changed prompt below, but add the device behind +# /boot/efi to the defaults. +boot_efi_device=$(get_mounted_device /boot/efi || true) +if [ "$boot_efi_device" ]; then + for device in $RET; do + device="${device%,}" + real_device="$(readlink -f "$device" || true)" + if [ "$real_device" = "$boot_efi_device" ]; then + boot_efi_device="" + break + fi + done + + if [ "$boot_efi_device" ]; then + boot_efi_device="$(device_to_id "$boot_efi_device" || true)" + if [ "$RET" ]; then + RET="$RET, $boot_efi_device" + else + RET="$boot_efi_device" + fi + valid=0 + fi +fi + + +if [ "$valid" = 0 ]; then + question=grub-efi/install_devices_disks_changed + priority=critical + db_set "$question" "$RET" + db_fset "$question" seen false + db_fset grub-efi/install_devices_empty seen false +fi + +while :; do + ids= + descriptions= + partitions="$(usable_efi_system_partitions)" + + for partition_pair in $partitions; do + partition_id="${partition_pair#*:}" + device="${partition_id%%-part*}" + ids="${ids:+$ids, }$partition_id" + describe_efi_system_partition "$(readlink -f "$device")" "$(readlink -f "$partition_id")" "$partition_id" "$(get_mountpoint "${partition_pair%%:*}")" + RET="$(printf %s "$RET" | sed 's/,/\\,/g')" + descriptions="${descriptions:+$descriptions, }$RET" + done + + db_subst "$question" RAW_CHOICES "$ids" + db_subst "$question" CHOICES "$descriptions" + db_input "$priority" "$question" || true + db_go + db_get "$question" + + + # Run the installer + failed_devices= + for i in `echo $RET | sed -e 's/, / /g'` ; do + real_device="$(readlink -f "$i")" + mntpoint=$(find_mount_point $real_device) + if [ -z "$mntpoint" ]; then + mntpoint=$FALLBACK_MOUNTPOINT + mount $real_device $mntpoint + fi + echo "Installing grub to $mntpoint." >&2 + if _UBUNTU_ALTERNATIVE_ESPS="$RET" grub-install --efi-directory=$mntpoint "$@" ; then + # We just installed GRUB 2; then also generate grub.cfg. + touch /boot/grub/grub.cfg + else + failed_devices="$failed_devices $real_device" + fi + + if [ "$mntpoint" = "$FALLBACK_MOUNTPOINT" ]; then + umount $mntpoint + fi + done + + if [ "$question" != grub-efi/install_devices ] && [ "$RET" ]; then + # XXX cjwatson 2019-02-26: The description of + # grub-efi/install_devices_disks_changed ought to explain that + # selecting no devices will leave the configuration unchanged + # so that you'll be prompted again next time, but it's a bit + # close to the Debian 10 release to be introducing new + # translatable text. For now, it should be sufficient to + # avoid losing configuration data. + db_set grub-efi/install_devices "$RET" + db_fset grub-efi/install_devices seen true + fi + + if [ "$failed_devices" ]; then + db_subst grub-efi/install_devices_failed FAILED_DEVICES "$failed_devices" + db_fset grub-efi/install_devices_failed seen false + if db_input critical grub-efi/install_devices_failed; then + db_go + db_get grub-efi/install_devices_failed + if [ "$RET" = true ]; then + break + else + db_fset "$question" seen false + db_fset grub-efi/install_devices_failed seen false + continue + fi + else + exit 1 # noninteractive + fi + fi + + db_get "$question" + if [ -z "$RET" ]; then + # Reset the seen flag if the current answer is false, since + # otherwise we'll loop with no indication of why. + db_get grub-efi/install_devices_empty + if [ "$RET" = false ]; then + db_fset grub-efi/install_devices_empty seen false + fi + if db_input critical grub-efi/install_devices_empty; then + db_go + db_get grub-efi/install_devices_empty + if [ "$RET" = true ]; then + break + else + db_fset "$question" seen false + db_fset grub-efi/install_devices_empty seen false + fi + else + # if question was seen we are done + # Otherwise, abort + db_fget grub-efi/install_devices_empty seen + if [ "$RET" = true ]; then + break + else + exit 1 + fi + fi + else + break + fi +done diff --git a/files/grub_unbuntu22-04/i386-pc/915resolution.mod b/files/grub_unbuntu22-04/i386-pc/915resolution.mod new file mode 100644 index 0000000000000000000000000000000000000000..210c82bf66686375d7e0718d6c513618e394c1e6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/915resolution.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/acpi.mod b/files/grub_unbuntu22-04/i386-pc/acpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..94c4162358a83dce2e86d0a457d7050270871b98 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/acpi.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/adler32.mod b/files/grub_unbuntu22-04/i386-pc/adler32.mod new file mode 100644 index 0000000000000000000000000000000000000000..9bab8c8bc5dc940527d7ad2ef56284edb83fd9ef Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/adler32.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/affs.mod b/files/grub_unbuntu22-04/i386-pc/affs.mod new file mode 100644 index 0000000000000000000000000000000000000000..ddf371d6eda4386c067ef2d4f31c7d572bfc63f8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/affs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/afs.mod b/files/grub_unbuntu22-04/i386-pc/afs.mod new file mode 100644 index 0000000000000000000000000000000000000000..2ca47f79d5116581ebf83a4765f4668b2b810177 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/afs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/afsplitter.mod b/files/grub_unbuntu22-04/i386-pc/afsplitter.mod new file mode 100644 index 0000000000000000000000000000000000000000..ee83f839ad81f2daf66d60721076b6799f39164b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/afsplitter.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ahci.mod b/files/grub_unbuntu22-04/i386-pc/ahci.mod new file mode 100644 index 0000000000000000000000000000000000000000..19c7d0ad0c53d91f092e4576f7be5afcbbe774eb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ahci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/all_video.mod b/files/grub_unbuntu22-04/i386-pc/all_video.mod new file mode 100644 index 0000000000000000000000000000000000000000..8462964baeb040a9e732628ee0993be67bf76a30 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/all_video.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/aout.mod b/files/grub_unbuntu22-04/i386-pc/aout.mod new file mode 100644 index 0000000000000000000000000000000000000000..dc10db9a552636f104720cf0ed63d86b1b27499e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/aout.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/archelp.mod b/files/grub_unbuntu22-04/i386-pc/archelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..41bee624f26e0234502ca702c88a3f85708b038c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/archelp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/at_keyboard.mod b/files/grub_unbuntu22-04/i386-pc/at_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..86e5a9ecd177ac3a09101aab837be088f886bcbd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/at_keyboard.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ata.mod b/files/grub_unbuntu22-04/i386-pc/ata.mod new file mode 100644 index 0000000000000000000000000000000000000000..af7f8b6a2151dc1029cb507e4004b141a283fc8a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ata.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/backtrace.mod b/files/grub_unbuntu22-04/i386-pc/backtrace.mod new file mode 100644 index 0000000000000000000000000000000000000000..2753c035ca49ea91d477a650d858a531715c369e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/backtrace.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/bfs.mod b/files/grub_unbuntu22-04/i386-pc/bfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..f37cbe31d8df267b62392b554868c752bb6bb534 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/biosdisk.mod b/files/grub_unbuntu22-04/i386-pc/biosdisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..f26b3924858f13d85d6b00522e55e35be27d93b3 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/biosdisk.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/bitmap.mod b/files/grub_unbuntu22-04/i386-pc/bitmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..8cb26a23cde62e7b3a6d564ffd8fac38057b8d65 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bitmap.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/bitmap_scale.mod b/files/grub_unbuntu22-04/i386-pc/bitmap_scale.mod new file mode 100644 index 0000000000000000000000000000000000000000..72040413ba7b44d5934becc6a310f5ada50f135a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bitmap_scale.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/blocklist.mod b/files/grub_unbuntu22-04/i386-pc/blocklist.mod new file mode 100644 index 0000000000000000000000000000000000000000..5b687d13b2d91cf9413ff632a27d0b89e0b8466e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/blocklist.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/boot.img b/files/grub_unbuntu22-04/i386-pc/boot.img new file mode 100644 index 0000000000000000000000000000000000000000..81a7a30ac6fafd097bf0e19166dc29a0c56ec224 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/boot.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/boot.mod b/files/grub_unbuntu22-04/i386-pc/boot.mod new file mode 100644 index 0000000000000000000000000000000000000000..006bcd70abf26403919c5157d62550d2bb6018d5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/boot.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/boot_hybrid.img b/files/grub_unbuntu22-04/i386-pc/boot_hybrid.img new file mode 100644 index 0000000000000000000000000000000000000000..d3c63409e744d78ce7ffca5ad84a4e38d004979b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/boot_hybrid.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/bsd.mod b/files/grub_unbuntu22-04/i386-pc/bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..f910adaf61642b34c280ab93270962248eccfc63 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bsd.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/bswap_test.mod b/files/grub_unbuntu22-04/i386-pc/bswap_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..decd7aec6df5d0d1a1b3c324cb7b959ba0d06734 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bswap_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/btrfs.mod b/files/grub_unbuntu22-04/i386-pc/btrfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4b23dbdf08490292c9e20b367be147f3f55fed84 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/btrfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/bufio.mod b/files/grub_unbuntu22-04/i386-pc/bufio.mod new file mode 100644 index 0000000000000000000000000000000000000000..510317f514833441d8bf829d69393ae2a20f4695 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/bufio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cat.mod b/files/grub_unbuntu22-04/i386-pc/cat.mod new file mode 100644 index 0000000000000000000000000000000000000000..8eaa14bdca88e83ab87ad5654f5eeb77778e498a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cat.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cbfs.mod b/files/grub_unbuntu22-04/i386-pc/cbfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..9120d092eb98c71aa7311d43a169710448cb5c06 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cbfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cbls.mod b/files/grub_unbuntu22-04/i386-pc/cbls.mod new file mode 100644 index 0000000000000000000000000000000000000000..1b4950b764c14dbf6750e96d91c5a0f9aff9a5bc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cbls.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cbmemc.mod b/files/grub_unbuntu22-04/i386-pc/cbmemc.mod new file mode 100644 index 0000000000000000000000000000000000000000..ac39b623b788fde85e06314266d96a1ad763df4d Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cbmemc.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cbtable.mod b/files/grub_unbuntu22-04/i386-pc/cbtable.mod new file mode 100644 index 0000000000000000000000000000000000000000..9f88761b2b5c581e15000114cdec5b701c5c4f6f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cbtable.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cbtime.mod b/files/grub_unbuntu22-04/i386-pc/cbtime.mod new file mode 100644 index 0000000000000000000000000000000000000000..6de822c0d7a2a32f91c2532b051794d2769e42c6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cbtime.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cdboot.img b/files/grub_unbuntu22-04/i386-pc/cdboot.img new file mode 100644 index 0000000000000000000000000000000000000000..5305be4148f34d5141b47b3b219894f72272e5f9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cdboot.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/chain.mod b/files/grub_unbuntu22-04/i386-pc/chain.mod new file mode 100644 index 0000000000000000000000000000000000000000..cb7c92f90aa477608075ca7ec8a82e301332ca15 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/chain.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cmdline_cat_test.mod b/files/grub_unbuntu22-04/i386-pc/cmdline_cat_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..6e9bcb3f4bf2118a72830ff3b9b7ef3d748920cb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cmdline_cat_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cmosdump.mod b/files/grub_unbuntu22-04/i386-pc/cmosdump.mod new file mode 100644 index 0000000000000000000000000000000000000000..22a9990483acd231935e434c7643983f34ba560e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cmosdump.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cmostest.mod b/files/grub_unbuntu22-04/i386-pc/cmostest.mod new file mode 100644 index 0000000000000000000000000000000000000000..d76ad51afbe2a574649eaad04633d9ec75e8f61e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cmostest.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cmp.mod b/files/grub_unbuntu22-04/i386-pc/cmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..fd1afe405fba79e284eff947704d51dbb6c9e753 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cmp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cmp_test.mod b/files/grub_unbuntu22-04/i386-pc/cmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e7e9eb1383ef17d9953b07141805f158210f79f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cmp_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/command.lst b/files/grub_unbuntu22-04/i386-pc/command.lst new file mode 100644 index 0000000000000000000000000000000000000000..6ecab3dd1d87548f188f942882e77f8f2e476f91 --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/command.lst @@ -0,0 +1,205 @@ +*acpi: acpi +*all_functional_test: functional_test +*background_image: gfxterm_background +*cat: cat +*cpuid: cpuid +*crc: hashsum +*cryptomount: cryptodisk +*drivemap: drivemap +*echo: echo +*extract_syslinux_entries_configfile: syslinuxcfg +*extract_syslinux_entries_source: syslinuxcfg +*file: file +*functional_test: functional_test +*gettext: gettext +*halt: halt +*hashsum: hashsum +*hdparm: hdparm +*hello: hello +*help: help +*hexdump: hexdump +*inb: iorw +*inl: iorw +*inw: iorw +*keystatus: keystatus +*kfreebsd: bsd +*knetbsd: bsd +*kopenbsd: bsd +*list_env: loadenv +*load_env: loadenv +*loopback: loopback +*ls: ls +*lsacpi: lsacpi +*lspci: lspci +*md5sum: hashsum +*menuentry: normal +*pcidump: pcidump +*plan9: plan9 +*probe: probe +*rdmsr: rdmsr +*read_byte: memrw +*read_dword: memrw +*read_word: memrw +*regexp: regexp +*save_env: loadenv +*search: search +*sendkey: sendkey +*serial: serial +*setpci: setpci +*sha1sum: hashsum +*sha256sum: hashsum +*sha512sum: hashsum +*sleep: sleep +*smbios: smbios +*submenu: normal +*syslinux_configfile: syslinuxcfg +*syslinux_source: syslinuxcfg +*terminfo: terminfo +*test_blockarg: test_blockarg +*testspeed: testspeed +*tr: tr +*trust: pgp +*verify_detached: pgp +*xnu_splash: xnu +*zfskey: zfscrypt +.: configfile +915resolution: 915resolution +[: test +authenticate: normal +background_color: gfxterm_background +backtrace: backtrace +badram: mmap +blocklist: blocklist +boot: boot +break: normal +cat: minicmd +cbmemc: cbmemc +chainloader: chain +clear: normal +cmosclean: cmostest +cmosdump: cmosdump +cmosset: cmostest +cmostest: cmostest +cmp: cmp +configfile: configfile +continue: normal +coreboot_boottime: cbtime +cutmem: mmap +date: date +distrust: pgp +dump: minicmd +efiemu_loadcore: efiemu +efiemu_prepare: efiemu +efiemu_unload: efiemu +eval: eval +exit: minicmd +export: normal +extract_entries_configfile: configfile +extract_entries_source: configfile +extract_legacy_entries_configfile: legacycfg +extract_legacy_entries_source: legacycfg +false: true +freedos: freedos +gdbstub: gdb +gdbstub_break: gdb +gdbstub_stop: gdb +gptsync: gptsync +help: minicmd +hexdump_random: random +hwmatch: hwmatch +initrd16: linux16 +initrd: linux +keymap: keylayouts +kfreebsd_loadenv: bsd +kfreebsd_module: bsd +kfreebsd_module_elf: bsd +knetbsd_module: bsd +knetbsd_module_elf: bsd +kopenbsd_ramdisk: bsd +legacy_check_password: legacycfg +legacy_configfile: legacycfg +legacy_initrd: legacycfg +legacy_initrd_nounzip: legacycfg +legacy_kernel: legacycfg +legacy_password: legacycfg +legacy_source: legacycfg +linux16: linux16 +linux: linux +list_trusted: pgp +loadfont: font +lsapm: lsapm +lscoreboot: cbls +lsfonts: font +lsmmap: lsmmap +lsmod: minicmd +macppcbless: macbless +mactelbless: macbless +module2: multiboot2 +module: multiboot +multiboot2: multiboot2 +multiboot: multiboot +nativedisk: nativedisk +net_add_addr: net +net_add_dns: net +net_add_route: net +net_bootp6: net +net_bootp: net +net_del_addr: net +net_del_dns: net +net_del_route: net +net_dhcp: net +net_get_dhcp_option: net +net_ipv6_autoconf: net +net_ls_addr: net +net_ls_cards: net +net_ls_dns: net +net_ls_routes: net +net_nslookup: net +normal: normal +normal_exit: normal +ntldr: ntldr +outb: iorw +outl: iorw +outw: iorw +parttool: parttool +password: password +password_pbkdf2: password_pbkdf2 +play: play +pxechainloader: pxechain +read: read +reboot: reboot +return: normal +rmmod: minicmd +search.file: search_fs_file +search.fs_label: search_label +search.fs_uuid: search_fs_uuid +setparams: normal +shift: normal +source: configfile +terminal_input: terminal +terminal_output: terminal +test: test +testload: testload +time: time +true: true +truecrypt: truecrypt +usb: usbtest +vbeinfo: videoinfo +vbetest: videotest +videoinfo: videoinfo +videotest: videotest +write_byte: memrw +write_dword: memrw +write_word: memrw +wrmsr: wrmsr +xnu_devprop_load: xnu +xnu_kernel64: xnu +xnu_kernel: xnu +xnu_kext: xnu +xnu_kextdir: xnu +xnu_mkext: xnu +xnu_ramdisk: xnu +xnu_resume: xnu +xnu_uuid: xnu_uuid +zfs-bootfs: zfsinfo +zfsinfo: zfsinfo diff --git a/files/grub_unbuntu22-04/i386-pc/config.h b/files/grub_unbuntu22-04/i386-pc/config.h new file mode 100644 index 0000000000000000000000000000000000000000..5f62018bdc5f29852cc6f1e0f3a5a706b3bf05fa --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/config.h @@ -0,0 +1,69 @@ +#undef _LARGEFILE_SOURCE +#undef _FILE_OFFSET_BITS +#define _LARGEFILE_SOURCE +#define _FILE_OFFSET_BITS 64 +#if defined(__PPC__) && !defined(__powerpc__) +#define __powerpc__ 1 +#endif + +#define GCRYPT_NO_DEPRECATED 1 +#define HAVE_MEMMOVE 1 + +/* Define to 1 to enable disk cache statistics. */ +#define DISK_CACHE_STATS 0 +#define BOOT_TIME_STATS 0 +/* Define to 1 to make GRUB quieter at boot time. */ +#define QUIET_BOOT 1 + +/* We don't need those. */ +#define MINILZO_CFG_SKIP_LZO_PTR 1 +#define MINILZO_CFG_SKIP_LZO_UTIL 1 +#define MINILZO_CFG_SKIP_LZO_STRING 1 +#define MINILZO_CFG_SKIP_LZO_INIT 1 +#define MINILZO_CFG_SKIP_LZO1X_1_COMPRESS 1 +#define MINILZO_CFG_SKIP_LZO1X_DECOMPRESS 1 + +#if defined (GRUB_BUILD) +#undef ENABLE_NLS +#define BUILD_SIZEOF_LONG 8 +#define BUILD_SIZEOF_VOID_P 8 +#if defined __APPLE__ +# if defined __BIG_ENDIAN__ +# define BUILD_WORDS_BIGENDIAN 1 +# else +# define BUILD_WORDS_BIGENDIAN 0 +# endif +#else +#define BUILD_WORDS_BIGENDIAN 0 +#endif +#elif defined (GRUB_UTIL) || !defined (GRUB_MACHINE) +#include <config-util.h> +#else +#define HAVE_FONT_SOURCE 1 +/* Define if C symbols get an underscore after compilation. */ +#define HAVE_ASM_USCORE 0 +/* Define it to one of __bss_start, edata and _edata. */ +#define BSS_START_SYMBOL __bss_start +/* Define it to either end or _end. */ +#define END_SYMBOL end +/* Name of package. */ +#define PACKAGE "grub" +/* Version number of package. */ +#define VERSION "2.06" +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "GRUB 2.06-2ubuntu7.1" +/* Define to the version of this package. */ +#define PACKAGE_VERSION "2.06-2ubuntu7.1" +/* Define to the full name of this package. */ +#define PACKAGE_NAME "GRUB" +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "bug-grub@gnu.org" + +#define GRUB_TARGET_CPU "i386" +#define GRUB_PLATFORM "pc" + +#define RE_ENABLE_I18N 1 + +#define _GNU_SOURCE 1 + +#endif diff --git a/files/grub_unbuntu22-04/i386-pc/configfile.mod b/files/grub_unbuntu22-04/i386-pc/configfile.mod new file mode 100644 index 0000000000000000000000000000000000000000..cc1a2e6310e5fc03470ebd2968cca6f85af6c34f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/configfile.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cpio.mod b/files/grub_unbuntu22-04/i386-pc/cpio.mod new file mode 100644 index 0000000000000000000000000000000000000000..2fbf8209581dd2a7f5d49baf7f9e3289d7534839 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cpio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cpio_be.mod b/files/grub_unbuntu22-04/i386-pc/cpio_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..f8771cd67d3850063ccc44fa6ac865e5f99fa566 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cpio_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cpuid.mod b/files/grub_unbuntu22-04/i386-pc/cpuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..691f9cfc64618fcffbb5499a35b1c14a90acc2df Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cpuid.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/crc64.mod b/files/grub_unbuntu22-04/i386-pc/crc64.mod new file mode 100644 index 0000000000000000000000000000000000000000..efd33fb6fae99ec7171b70eddb4253041eb491a1 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/crc64.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/crypto.lst b/files/grub_unbuntu22-04/i386-pc/crypto.lst new file mode 100644 index 0000000000000000000000000000000000000000..77d9efc01a4371a136c3330355aa68b0368e65c9 --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/crypto.lst @@ -0,0 +1,45 @@ +RIJNDAEL: gcry_rijndael +RIJNDAEL192: gcry_rijndael +RIJNDAEL256: gcry_rijndael +AES128: gcry_rijndael +AES-128: gcry_rijndael +AES-192: gcry_rijndael +AES-256: gcry_rijndael +ADLER32: adler32 +CRC64: crc64 +ARCFOUR: gcry_arcfour +BLOWFISH: gcry_blowfish +CAMELLIA128: gcry_camellia +CAMELLIA192: gcry_camellia +CAMELLIA256: gcry_camellia +CAST5: gcry_cast5 +CRC32: gcry_crc +CRC32RFC1510: gcry_crc +CRC24RFC2440: gcry_crc +DES: gcry_des +3DES: gcry_des +DSA: gcry_dsa +IDEA: gcry_idea +MD4: gcry_md4 +MD5: gcry_md5 +RFC2268_40: gcry_rfc2268 +AES: gcry_rijndael +AES192: gcry_rijndael +AES256: gcry_rijndael +RIPEMD160: gcry_rmd160 +RSA: gcry_rsa +SEED: gcry_seed +SERPENT128: gcry_serpent +SERPENT192: gcry_serpent +SERPENT256: gcry_serpent +SHA1: gcry_sha1 +SHA224: gcry_sha256 +SHA256: gcry_sha256 +SHA512: gcry_sha512 +SHA384: gcry_sha512 +TIGER192: gcry_tiger +TIGER: gcry_tiger +TIGER2: gcry_tiger +TWOFISH: gcry_twofish +TWOFISH128: gcry_twofish +WHIRLPOOL: gcry_whirlpool diff --git a/files/grub_unbuntu22-04/i386-pc/crypto.mod b/files/grub_unbuntu22-04/i386-pc/crypto.mod new file mode 100644 index 0000000000000000000000000000000000000000..ba729942b685877207fb233097bdfb20fb68d3bf Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/crypto.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cryptodisk.mod b/files/grub_unbuntu22-04/i386-pc/cryptodisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..67f663686eea86bd5b614bd6e995145aa0aa7449 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cryptodisk.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/cs5536.mod b/files/grub_unbuntu22-04/i386-pc/cs5536.mod new file mode 100644 index 0000000000000000000000000000000000000000..b41276f9bd535ee46f7b3c8cf569de729ac42116 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/cs5536.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ctz_test.mod b/files/grub_unbuntu22-04/i386-pc/ctz_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a3a558b5664193b69ca599943d18ddc8a1969670 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ctz_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/date.mod b/files/grub_unbuntu22-04/i386-pc/date.mod new file mode 100644 index 0000000000000000000000000000000000000000..b0f763cc7d9422a01a0c28b19769e76cf96fa4e6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/date.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/datehook.mod b/files/grub_unbuntu22-04/i386-pc/datehook.mod new file mode 100644 index 0000000000000000000000000000000000000000..466aed25b76a56c5064d478f104e9f7659e6a836 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/datehook.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/datetime.mod b/files/grub_unbuntu22-04/i386-pc/datetime.mod new file mode 100644 index 0000000000000000000000000000000000000000..2169eff4dc5d8dea825ac7771ba0d004db5398ec Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/datetime.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/disk.mod b/files/grub_unbuntu22-04/i386-pc/disk.mod new file mode 100644 index 0000000000000000000000000000000000000000..883f070d5af573e2feba6dae4cb72ea6ffcb76d3 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/disk.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/diskboot.img b/files/grub_unbuntu22-04/i386-pc/diskboot.img new file mode 100644 index 0000000000000000000000000000000000000000..fac4a2548ee0ce85164542ca8dab4640ea23d09a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/diskboot.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/diskfilter.mod b/files/grub_unbuntu22-04/i386-pc/diskfilter.mod new file mode 100644 index 0000000000000000000000000000000000000000..ddb971774a6fb64b390f48fdea7a429e6dded987 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/diskfilter.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/div.mod b/files/grub_unbuntu22-04/i386-pc/div.mod new file mode 100644 index 0000000000000000000000000000000000000000..51be8313e6f5e46212b36c88b04bce143421c158 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/div.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/div_test.mod b/files/grub_unbuntu22-04/i386-pc/div_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..89afb6491945f99fc39a91fd03c67195f039211c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/div_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/dm_nv.mod b/files/grub_unbuntu22-04/i386-pc/dm_nv.mod new file mode 100644 index 0000000000000000000000000000000000000000..2c9d8d35cc6c608968cf6beec1ef4ab612d0fb3c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/dm_nv.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/drivemap.mod b/files/grub_unbuntu22-04/i386-pc/drivemap.mod new file mode 100644 index 0000000000000000000000000000000000000000..bf4ab834ad1b4d6520d8020395e8af1d017d2abe Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/drivemap.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/echo.mod b/files/grub_unbuntu22-04/i386-pc/echo.mod new file mode 100644 index 0000000000000000000000000000000000000000..5b3e9516c9f7c21d8645e5bfbdb08686cd02f74a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/echo.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/efiemu.mod b/files/grub_unbuntu22-04/i386-pc/efiemu.mod new file mode 100644 index 0000000000000000000000000000000000000000..ec0d41b1f4db624888b9bfc12badc785bd2efd31 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/efiemu.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/efiemu32.o b/files/grub_unbuntu22-04/i386-pc/efiemu32.o new file mode 100644 index 0000000000000000000000000000000000000000..5ccbc29a3ea0aa424b01c22b61dda6389840301f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/efiemu32.o differ diff --git a/files/grub_unbuntu22-04/i386-pc/efiemu64.o b/files/grub_unbuntu22-04/i386-pc/efiemu64.o new file mode 100644 index 0000000000000000000000000000000000000000..85c9d12088efad53a242c1e6f2ec85871c6ab2e4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/efiemu64.o differ diff --git a/files/grub_unbuntu22-04/i386-pc/ehci.mod b/files/grub_unbuntu22-04/i386-pc/ehci.mod new file mode 100644 index 0000000000000000000000000000000000000000..1e71a1aeb8fb3ad2d8a368ea9c50a8b84f26bbe7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ehci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/elf.mod b/files/grub_unbuntu22-04/i386-pc/elf.mod new file mode 100644 index 0000000000000000000000000000000000000000..2be28a239dd0d57a45b967750e41edf417cc88e3 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/elf.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/eval.mod b/files/grub_unbuntu22-04/i386-pc/eval.mod new file mode 100644 index 0000000000000000000000000000000000000000..45c686a72862374cc8f3583b99f3bd9013d3c499 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/eval.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/exfat.mod b/files/grub_unbuntu22-04/i386-pc/exfat.mod new file mode 100644 index 0000000000000000000000000000000000000000..07ca8ebc1ca0812b45fb92a6a323a566df05b763 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/exfat.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/exfctest.mod b/files/grub_unbuntu22-04/i386-pc/exfctest.mod new file mode 100644 index 0000000000000000000000000000000000000000..963ffa7a1268b080dad58b1ab36f09498f6ba7bc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/exfctest.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ext2.mod b/files/grub_unbuntu22-04/i386-pc/ext2.mod new file mode 100644 index 0000000000000000000000000000000000000000..45c8c04317028a0f068c3383597a1747c96e5ce3 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ext2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/extcmd.mod b/files/grub_unbuntu22-04/i386-pc/extcmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..7533ccece06905b755702b966ad3d18b7e335cfd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/extcmd.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/f2fs.mod b/files/grub_unbuntu22-04/i386-pc/f2fs.mod new file mode 100644 index 0000000000000000000000000000000000000000..bcd7c567cbeca297a4b6c0dff13e70f3878f6eb9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/f2fs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/fat.mod b/files/grub_unbuntu22-04/i386-pc/fat.mod new file mode 100644 index 0000000000000000000000000000000000000000..0e070e4fd9cc75315347b3491127af04914d88e5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/fat.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/fdt.lst b/files/grub_unbuntu22-04/i386-pc/fdt.lst new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/files/grub_unbuntu22-04/i386-pc/file.mod b/files/grub_unbuntu22-04/i386-pc/file.mod new file mode 100644 index 0000000000000000000000000000000000000000..e3eac1d1b9df1372cad7e0eec23f3cff17863ac7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/file.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/font.mod b/files/grub_unbuntu22-04/i386-pc/font.mod new file mode 100644 index 0000000000000000000000000000000000000000..863e60e40488f993b058c3192caa8dc64cc073fd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/font.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/freedos.mod b/files/grub_unbuntu22-04/i386-pc/freedos.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b04dc8de2898431010b03d19b0b3eba2bbbc3df Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/freedos.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/fs.lst b/files/grub_unbuntu22-04/i386-pc/fs.lst new file mode 100644 index 0000000000000000000000000000000000000000..0acd240b130a371f88b5a5d5415d9eaea6dc3557 --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/fs.lst @@ -0,0 +1,37 @@ +affs +afs +bfs +btrfs +cbfs +cpio +cpio_be +exfat +ext2 +f2fs +fat +hfs +hfsplus +iso9660 +jfs +minix +minix2 +minix2_be +minix3 +minix3_be +minix_be +newc +nilfs2 +ntfs +odc +procfs +reiserfs +romfs +sfs +squash4 +tar +udf +ufs1 +ufs1_be +ufs2 +xfs +zfs diff --git a/files/grub_unbuntu22-04/i386-pc/fshelp.mod b/files/grub_unbuntu22-04/i386-pc/fshelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..24ecd68bd010a7a61b79dc2f825e04ab60b22749 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/fshelp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/functional_test.mod b/files/grub_unbuntu22-04/i386-pc/functional_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5714009bb466aa5c53e4e17d384711ec6130725 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/functional_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/g2hdr.bin b/files/grub_unbuntu22-04/i386-pc/g2hdr.bin new file mode 100644 index 0000000000000000000000000000000000000000..898aeb9cd469a3ac0be6181e1e2fb9c62a489dca Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/g2hdr.bin differ diff --git a/files/grub_unbuntu22-04/i386-pc/g2hdr.img b/files/grub_unbuntu22-04/i386-pc/g2hdr.img new file mode 100644 index 0000000000000000000000000000000000000000..898aeb9cd469a3ac0be6181e1e2fb9c62a489dca Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/g2hdr.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/g2ldr.img b/files/grub_unbuntu22-04/i386-pc/g2ldr.img new file mode 100644 index 0000000000000000000000000000000000000000..7afca852f39b3e3761753938c6aaa59c4f81d5a7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/g2ldr.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/g2ldr.mbr b/files/grub_unbuntu22-04/i386-pc/g2ldr.mbr new file mode 100644 index 0000000000000000000000000000000000000000..2cdd88acaaa6691528103685b18c9ebf20ae8436 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/g2ldr.mbr differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_arcfour.mod b/files/grub_unbuntu22-04/i386-pc/gcry_arcfour.mod new file mode 100644 index 0000000000000000000000000000000000000000..0f043b6a265dc9807199d9d4c2f41f602009207e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_arcfour.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_blowfish.mod b/files/grub_unbuntu22-04/i386-pc/gcry_blowfish.mod new file mode 100644 index 0000000000000000000000000000000000000000..625bb857c94da7f26af93d508784149f114890f5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_blowfish.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_camellia.mod b/files/grub_unbuntu22-04/i386-pc/gcry_camellia.mod new file mode 100644 index 0000000000000000000000000000000000000000..6a4285b602e48cb25761adbe2ac895c12c645ab8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_camellia.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_cast5.mod b/files/grub_unbuntu22-04/i386-pc/gcry_cast5.mod new file mode 100644 index 0000000000000000000000000000000000000000..85bb5119286e683e9e66c3ca3e3c7a74038e59ac Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_cast5.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_crc.mod b/files/grub_unbuntu22-04/i386-pc/gcry_crc.mod new file mode 100644 index 0000000000000000000000000000000000000000..ff725a587843875ce1de3a814d48dcd4bfd29670 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_crc.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_des.mod b/files/grub_unbuntu22-04/i386-pc/gcry_des.mod new file mode 100644 index 0000000000000000000000000000000000000000..2130898c277611b74f1a904d0e2fbe7480da8b38 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_des.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_dsa.mod b/files/grub_unbuntu22-04/i386-pc/gcry_dsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..8efe289bf447519501b5b15b321abd3648edb865 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_dsa.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_idea.mod b/files/grub_unbuntu22-04/i386-pc/gcry_idea.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a75b84f134087f2db6d6859c95475d4b3017ecc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_idea.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_md4.mod b/files/grub_unbuntu22-04/i386-pc/gcry_md4.mod new file mode 100644 index 0000000000000000000000000000000000000000..f2e10932af93f47bccff468ff3d92310a6110b83 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_md4.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_md5.mod b/files/grub_unbuntu22-04/i386-pc/gcry_md5.mod new file mode 100644 index 0000000000000000000000000000000000000000..ea77e162a2570840f919ee6d875b3dc339b7aac7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_md5.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_rfc2268.mod b/files/grub_unbuntu22-04/i386-pc/gcry_rfc2268.mod new file mode 100644 index 0000000000000000000000000000000000000000..3028d8cadb9d41f6469f3aeb2b277e86f0776eb9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_rfc2268.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_rijndael.mod b/files/grub_unbuntu22-04/i386-pc/gcry_rijndael.mod new file mode 100644 index 0000000000000000000000000000000000000000..4e795e31825f48d68171378893085acc7e3d2979 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_rijndael.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_rmd160.mod b/files/grub_unbuntu22-04/i386-pc/gcry_rmd160.mod new file mode 100644 index 0000000000000000000000000000000000000000..49f10a2d046956d6c49c92579623ea94e7560620 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_rmd160.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_rsa.mod b/files/grub_unbuntu22-04/i386-pc/gcry_rsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..5c025d1547964f812eea08604c194e3df616b89a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_rsa.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_seed.mod b/files/grub_unbuntu22-04/i386-pc/gcry_seed.mod new file mode 100644 index 0000000000000000000000000000000000000000..858249738c99f563af346427e81a8041abf6d043 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_seed.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_serpent.mod b/files/grub_unbuntu22-04/i386-pc/gcry_serpent.mod new file mode 100644 index 0000000000000000000000000000000000000000..3858635237933c19d2da711301aeb1e8f1ff3304 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_serpent.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_sha1.mod b/files/grub_unbuntu22-04/i386-pc/gcry_sha1.mod new file mode 100644 index 0000000000000000000000000000000000000000..c92be3daa3824d73b10b2060dd97233ada9df5c8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_sha1.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_sha256.mod b/files/grub_unbuntu22-04/i386-pc/gcry_sha256.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6a493d843e079a3a33f91284b6aa4041cf91a44 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_sha256.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_sha512.mod b/files/grub_unbuntu22-04/i386-pc/gcry_sha512.mod new file mode 100644 index 0000000000000000000000000000000000000000..143da805bd1a574c59d9d4da0de9ca924f31e770 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_sha512.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_tiger.mod b/files/grub_unbuntu22-04/i386-pc/gcry_tiger.mod new file mode 100644 index 0000000000000000000000000000000000000000..c0aa75f056c93f6401e5af2e7c0ae0cefa379b8a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_tiger.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_twofish.mod b/files/grub_unbuntu22-04/i386-pc/gcry_twofish.mod new file mode 100644 index 0000000000000000000000000000000000000000..62bff8201053608b33de4efbb7d1868aab9f4678 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_twofish.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gcry_whirlpool.mod b/files/grub_unbuntu22-04/i386-pc/gcry_whirlpool.mod new file mode 100644 index 0000000000000000000000000000000000000000..f690610a2def8377c8a20abe2a168fd047d5e35c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gcry_whirlpool.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gdb.mod b/files/grub_unbuntu22-04/i386-pc/gdb.mod new file mode 100644 index 0000000000000000000000000000000000000000..edb6ffc963d797b26cf58e391048730998597560 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gdb.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/geli.mod b/files/grub_unbuntu22-04/i386-pc/geli.mod new file mode 100644 index 0000000000000000000000000000000000000000..7eb1292b210717e4cb6b7ce14743c6bc86b0bc0f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/geli.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gettext.mod b/files/grub_unbuntu22-04/i386-pc/gettext.mod new file mode 100644 index 0000000000000000000000000000000000000000..3d0d6b06000bceea4bd5db05d5daf02c9bb0dde1 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gettext.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gfxmenu.mod b/files/grub_unbuntu22-04/i386-pc/gfxmenu.mod new file mode 100644 index 0000000000000000000000000000000000000000..9dc0c459b42ba68d2187d58abdce81617765b2e2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gfxmenu.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gfxterm.mod b/files/grub_unbuntu22-04/i386-pc/gfxterm.mod new file mode 100644 index 0000000000000000000000000000000000000000..f42829f84ef79cd27051d2e2d57e7ab257ea00f7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gfxterm.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gfxterm_background.mod b/files/grub_unbuntu22-04/i386-pc/gfxterm_background.mod new file mode 100644 index 0000000000000000000000000000000000000000..a3595a03c0584b4ca7acdadae4db144e0bfeddf8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gfxterm_background.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gfxterm_menu.mod b/files/grub_unbuntu22-04/i386-pc/gfxterm_menu.mod new file mode 100644 index 0000000000000000000000000000000000000000..3f81eac8d0d56c86d34d40dfd79168195f3c0f25 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gfxterm_menu.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/gptsync.mod b/files/grub_unbuntu22-04/i386-pc/gptsync.mod new file mode 100644 index 0000000000000000000000000000000000000000..6f083df1ff1a267c0933f3d555c55eca32ab9780 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gptsync.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/grldr.img b/files/grub_unbuntu22-04/i386-pc/grldr.img new file mode 100644 index 0000000000000000000000000000000000000000..fece2141de7bb28c034f7b971afbf61dafdd00c5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/grldr.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/grub-bios-setup b/files/grub_unbuntu22-04/i386-pc/grub-bios-setup new file mode 100755 index 0000000000000000000000000000000000000000..b89c5d9784fda7bf3131b973b95f990f2258d0ae Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/grub-bios-setup differ diff --git a/files/grub_unbuntu22-04/i386-pc/grub-ntldr-img b/files/grub_unbuntu22-04/i386-pc/grub-ntldr-img new file mode 100755 index 0000000000000000000000000000000000000000..38b872b3e6419682c6f67983d9d5de89f6b2fe9a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/grub-ntldr-img differ diff --git a/files/grub_unbuntu22-04/i386-pc/gzio.mod b/files/grub_unbuntu22-04/i386-pc/gzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e7a82debe8288e13c922060895812ac0be534bd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/gzio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/halt.mod b/files/grub_unbuntu22-04/i386-pc/halt.mod new file mode 100644 index 0000000000000000000000000000000000000000..ffd5a8117198c413137a22f9ef3faef82fc33f7a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/halt.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hashsum.mod b/files/grub_unbuntu22-04/i386-pc/hashsum.mod new file mode 100644 index 0000000000000000000000000000000000000000..f6a938c64d2044cceb382ca65f0930823cebd464 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hashsum.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hdparm.mod b/files/grub_unbuntu22-04/i386-pc/hdparm.mod new file mode 100644 index 0000000000000000000000000000000000000000..08db7670b8a7e260ecb8bd511f6216d9acbfcd02 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hdparm.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hello.mod b/files/grub_unbuntu22-04/i386-pc/hello.mod new file mode 100644 index 0000000000000000000000000000000000000000..45999265dc940e3483294de5d96f201544508d90 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hello.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/help.mod b/files/grub_unbuntu22-04/i386-pc/help.mod new file mode 100644 index 0000000000000000000000000000000000000000..715735963df39e01b6f0ace0e05a33f0cb7e2491 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/help.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hexdump.mod b/files/grub_unbuntu22-04/i386-pc/hexdump.mod new file mode 100644 index 0000000000000000000000000000000000000000..0cb19016b444c50dd51efba5cba13b95ea4b8e4f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hexdump.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hfs.mod b/files/grub_unbuntu22-04/i386-pc/hfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..f9182110e4c4587a699dbdfde1cfb55990604588 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hfsplus.mod b/files/grub_unbuntu22-04/i386-pc/hfsplus.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5b6dfd71cb71b5ea17720909d49b6c8ac7d15c0 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hfsplus.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hfspluscomp.mod b/files/grub_unbuntu22-04/i386-pc/hfspluscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5d4bec457c8a58736acb45d7a11f016fd1524df Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hfspluscomp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/http.mod b/files/grub_unbuntu22-04/i386-pc/http.mod new file mode 100644 index 0000000000000000000000000000000000000000..7965d3578b3b1efb47eac2aa041ee198df231352 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/http.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/hwmatch.mod b/files/grub_unbuntu22-04/i386-pc/hwmatch.mod new file mode 100644 index 0000000000000000000000000000000000000000..3b2cc90e7d6e3d7e70d954535df0fae54872514d Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/hwmatch.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/iorw.mod b/files/grub_unbuntu22-04/i386-pc/iorw.mod new file mode 100644 index 0000000000000000000000000000000000000000..8a174135d799d461235b9fa4750c525df5710d93 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/iorw.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/iso9660.mod b/files/grub_unbuntu22-04/i386-pc/iso9660.mod new file mode 100644 index 0000000000000000000000000000000000000000..84acd40e137436b1a1df1ec1fce9ba08c147b079 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/iso9660.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/jfs.mod b/files/grub_unbuntu22-04/i386-pc/jfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..01dc212dd9f94d7ad6e6ece6d650fd3f3cd3e8de Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/jfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/jpeg.mod b/files/grub_unbuntu22-04/i386-pc/jpeg.mod new file mode 100644 index 0000000000000000000000000000000000000000..d91cbcacec5e2bfc039d1b8e68105c3133e5945e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/jpeg.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/json.mod b/files/grub_unbuntu22-04/i386-pc/json.mod new file mode 100644 index 0000000000000000000000000000000000000000..27b16f1835ca70ca8f9994d5216820a2d8c133cf Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/json.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/kernel.img b/files/grub_unbuntu22-04/i386-pc/kernel.img new file mode 100644 index 0000000000000000000000000000000000000000..eda259ab94254378bd8332d73159db2ec0c98aa8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/kernel.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/keylayouts.mod b/files/grub_unbuntu22-04/i386-pc/keylayouts.mod new file mode 100644 index 0000000000000000000000000000000000000000..ed37d5ba7446d19b66c410c780d01c1a35a254ec Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/keylayouts.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/keystatus.mod b/files/grub_unbuntu22-04/i386-pc/keystatus.mod new file mode 100644 index 0000000000000000000000000000000000000000..024c886ac36a39795e72aff4138bedd88be68388 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/keystatus.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ldm.mod b/files/grub_unbuntu22-04/i386-pc/ldm.mod new file mode 100644 index 0000000000000000000000000000000000000000..c1ae30ddff3406fb83da84a060142cf2bc12394b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ldm.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/legacy_password_test.mod b/files/grub_unbuntu22-04/i386-pc/legacy_password_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..967eb2828f561fd22d6e0090c73106e7647a281f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/legacy_password_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/legacycfg.mod b/files/grub_unbuntu22-04/i386-pc/legacycfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..039107f9b844c63adbeaf8466db13854876a481f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/legacycfg.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/linux.mod b/files/grub_unbuntu22-04/i386-pc/linux.mod new file mode 100644 index 0000000000000000000000000000000000000000..713b3360575ca7c406ca50ac22b12ed96d92d5e8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/linux.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/linux16.mod b/files/grub_unbuntu22-04/i386-pc/linux16.mod new file mode 100644 index 0000000000000000000000000000000000000000..d13f280d89fbe50ab45d82cf0a2a78a938fc0233 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/linux16.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lnxboot.img b/files/grub_unbuntu22-04/i386-pc/lnxboot.img new file mode 100644 index 0000000000000000000000000000000000000000..a60fcf2cb09e7e4b462d2d557a9b7bcc480107f8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lnxboot.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/loadenv.mod b/files/grub_unbuntu22-04/i386-pc/loadenv.mod new file mode 100644 index 0000000000000000000000000000000000000000..8d9454f37c6026b927fb7d69c3df1a7c124ed730 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/loadenv.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/loopback.mod b/files/grub_unbuntu22-04/i386-pc/loopback.mod new file mode 100644 index 0000000000000000000000000000000000000000..d595615a8cacd3cb38247dc9ad6a13580003bc7b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/loopback.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ls.mod b/files/grub_unbuntu22-04/i386-pc/ls.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5011b7352015d08cc86ea32b5a11a6d2dc69b0e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ls.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lsacpi.mod b/files/grub_unbuntu22-04/i386-pc/lsacpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..b37254021dbfbe7763ed9677588c81e3914e8a58 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lsacpi.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lsapm.mod b/files/grub_unbuntu22-04/i386-pc/lsapm.mod new file mode 100644 index 0000000000000000000000000000000000000000..b302ba7a445621ee4fc7e72144bcf1907772ba6c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lsapm.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lsmmap.mod b/files/grub_unbuntu22-04/i386-pc/lsmmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..e498482051a851718f89bcae8b4c4bef762fee33 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lsmmap.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lspci.mod b/files/grub_unbuntu22-04/i386-pc/lspci.mod new file mode 100644 index 0000000000000000000000000000000000000000..de45c94129abf273584ee6861acb8a03970db012 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lspci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/luks.mod b/files/grub_unbuntu22-04/i386-pc/luks.mod new file mode 100644 index 0000000000000000000000000000000000000000..1514504592ee6d5258a760d2fd818dbb1c529a4b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/luks.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/luks2.mod b/files/grub_unbuntu22-04/i386-pc/luks2.mod new file mode 100644 index 0000000000000000000000000000000000000000..78c0b242fe15a4878c3f791813caad7dd4bc609c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/luks2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lvm.mod b/files/grub_unbuntu22-04/i386-pc/lvm.mod new file mode 100644 index 0000000000000000000000000000000000000000..598a37f93757c1d91d646fb9c0463a7f453426f0 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lvm.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/lzma_decompress.img b/files/grub_unbuntu22-04/i386-pc/lzma_decompress.img new file mode 100644 index 0000000000000000000000000000000000000000..809a6c178abb6737bdcd25981ef6085fbf9506ae Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lzma_decompress.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/lzopio.mod b/files/grub_unbuntu22-04/i386-pc/lzopio.mod new file mode 100644 index 0000000000000000000000000000000000000000..4086f3a3f2f5d19b71641a26561912481608dba9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/lzopio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/macbless.mod b/files/grub_unbuntu22-04/i386-pc/macbless.mod new file mode 100644 index 0000000000000000000000000000000000000000..7403e0ce5169b5cfb182497882f40a3dad099db2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/macbless.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/macho.mod b/files/grub_unbuntu22-04/i386-pc/macho.mod new file mode 100644 index 0000000000000000000000000000000000000000..64dec1861d91fecab8dcec3b0d7dc173dedf12ac Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/macho.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mda_text.mod b/files/grub_unbuntu22-04/i386-pc/mda_text.mod new file mode 100644 index 0000000000000000000000000000000000000000..6bbdfb1a81cd2b79327285660113a912380c2ac7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mda_text.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mdraid09.mod b/files/grub_unbuntu22-04/i386-pc/mdraid09.mod new file mode 100644 index 0000000000000000000000000000000000000000..2b27327649be5fd7b435142e6d3e35c718723c32 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mdraid09.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mdraid09_be.mod b/files/grub_unbuntu22-04/i386-pc/mdraid09_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b526b0f264993ed62edf9cb94fe0e0bfb37d44c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mdraid09_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mdraid1x.mod b/files/grub_unbuntu22-04/i386-pc/mdraid1x.mod new file mode 100644 index 0000000000000000000000000000000000000000..384014622f7bdc61572e06944f055c984ad61541 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mdraid1x.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/memdisk.mod b/files/grub_unbuntu22-04/i386-pc/memdisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..c41a1a37f89b8198cc390bfe8bf409df4b11ca2c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/memdisk.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/memrw.mod b/files/grub_unbuntu22-04/i386-pc/memrw.mod new file mode 100644 index 0000000000000000000000000000000000000000..91cb479aaa974b83a0734b9e6212bb3b6c2a3f13 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/memrw.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minicmd.mod b/files/grub_unbuntu22-04/i386-pc/minicmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..374c83cb7df1da93865aa5bae82b03475fa6e61d Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minicmd.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix.mod b/files/grub_unbuntu22-04/i386-pc/minix.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e8f738d6680a54f345d7432ccdc38703d5a8050 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix2.mod b/files/grub_unbuntu22-04/i386-pc/minix2.mod new file mode 100644 index 0000000000000000000000000000000000000000..c5994aab896ba97186078d4ab05031a807f1dc5c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix2_be.mod b/files/grub_unbuntu22-04/i386-pc/minix2_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..848782879b88897b59f14390d8c70e83f68c6951 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix2_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix3.mod b/files/grub_unbuntu22-04/i386-pc/minix3.mod new file mode 100644 index 0000000000000000000000000000000000000000..39f0e6a90522b1a1f6249a309a4012afea1fea13 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix3.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix3_be.mod b/files/grub_unbuntu22-04/i386-pc/minix3_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..dc750d417af0223d9a49e57aed9af9fc51be0575 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix3_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/minix_be.mod b/files/grub_unbuntu22-04/i386-pc/minix_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..8725f92a2672ab00cb1c34cda21f959cc5984e35 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/minix_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mmap.mod b/files/grub_unbuntu22-04/i386-pc/mmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..f97dd60b5fe703c5e48e9f33a399b6e07e969764 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mmap.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/moddep.lst b/files/grub_unbuntu22-04/i386-pc/moddep.lst new file mode 100644 index 0000000000000000000000000000000000000000..438ad3fb53ccded110ce5ee49924e35f4c6137ad --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/moddep.lst @@ -0,0 +1,276 @@ +xfs: fshelp +fshelp: +videotest_checksum: video_fb font functional_test +relocator: mmap +procfs: archelp +offsetio: +gcry_seed: crypto +ufs2: +tr: extcmd +lsacpi: extcmd acpi +json: +gfxterm_background: extcmd gfxterm bitmap video video_colors bitmap_scale +file: offsetio extcmd elf macho +xnu_uuid: gcry_md5 +part_sunpc: +lsapm: +extcmd: +echo: extcmd +btrfs: gzio lzopio raid6rec zstd +read: +priority_queue: +gcry_dsa: mpi pgp +ctz_test: functional_test +cbls: cbtable +zfs: gzio +progress: normal +minix: +setjmp: +macbless: disk +hfspluscomp: gzio hfsplus +gcry_rsa: mpi pgp +cat: extcmd +videotest: font video gfxmenu +sleep: extcmd normal +reiserfs: fshelp +lspci: extcmd pci +div: +video_cirrus: video_fb video pci +testload: +search_fs_uuid: +part_dvh: +gcry_md5: crypto +gcry_arcfour: crypto +ufs1_be: +part_acorn: +iorw: extcmd +gfxterm: font video +cpio_be: archelp +scsi: +memdisk: +crc64: crypto +ata: scsi +multiboot2: relocator lsapm boot net acpi linux video mmap vbe +gcry_idea: crypto +cpuid: extcmd +cmp_test: functional_test +video_fb: +sfs: fshelp +zfscrypt: extcmd zfs crypto pbkdf2 gcry_rijndael gcry_sha1 +video_bochs: video_fb video pci +udf: fshelp +datehook: datetime +adler32: crypto +setjmp_test: setjmp functional_test +ntfscomp: ntfs +nativedisk: +freedos: relocator boot chain video +eval: normal +videoinfo: video +verifiers: +pbkdf2: crypto +password_pbkdf2: crypto pbkdf2 normal gcry_sha512 +font: bufio video +datetime: +crypto: +vga: video_fb video +strtoull_test: functional_test +pcidump: extcmd pci +mdraid09_be: diskfilter +afsplitter: crypto +normal: extcmd verifiers datetime crypto boot net bufio gettext terminal +efiemu: cpuid crypto acpi gcry_crc smbios +tftp: net +gcry_whirlpool: crypto +fat: fshelp +setpci: extcmd pci +boot: +ufs1: +cpio: archelp +chain: relocator boot video +cbmemc: normal terminfo cbtable +tga: bufio bitmap +spkmodem: terminfo +odc: archelp +drivemap: extcmd boot mmap +usbserial_pl2303: usb serial usbserial_common +regexp: extcmd normal +password: crypto normal +ntfs: fshelp +net: priority_queue datetime boot bufio +loadenv: extcmd disk +gzio: gcry_crc +ehci: boot cs5536 usb pci +archelp: +kernel: +usbtest: usb +pxechain: relocator boot video pxe +gptsync: disk +date: datetime +xnu: relocator extcmd verifiers efiemu boot random bitmap video mmap bitmap_scale macho +mul_test: functional_test +bufio: +acpi: extcmd mmap +cmostest: +png: bufio bitmap +minix2: +cs5536: pci +linux: relocator verifiers normal boot video mmap vbe +gcry_des: crypto +gcry_blowfish: crypto +part_plan: +part_bsd: part_msdos +lvm: diskfilter +gcry_tiger: crypto +blocklist: +xzio: crypto +usb_keyboard: usb keylayouts +nilfs2: fshelp +lsmmap: +gcry_cast5: crypto +backtrace: +testspeed: extcmd normal +squash4: fshelp gzio xzio lzopio +msdospart: disk parttool +lzopio: crypto +gfxterm_menu: procfs video_fb font normal functional_test +gcry_sha256: crypto +vga_text: +usb: pci +pata: ata pci +hwmatch: normal regexp pci +affs: fshelp +syslinuxcfg: extcmd normal +random: acpi hexdump +part_amiga: +play: +part_apple: +mpi: crypto +keylayouts: +jpeg: bufio bitmap +gcry_rmd160: crypto +cbfs: archelp +time: +loopback: extcmd +disk: +at_keyboard: boot keylayouts +true: +test: +part_sun: +part_msdos: +morse: +http: net +part_gpt: +luks2: json crypto pbkdf2 afsplitter cryptodisk +elf: +diskfilter: +bitmap: +mda_text: +cmp: +uhci: usb pci +ls: extcmd datetime normal +search: extcmd search_fs_uuid search_fs_file search_label +raid6rec: diskfilter +minix3_be: +memrw: extcmd +cbtime: cbtable +zstd: +raid5rec: diskfilter +rdmsr: extcmd +hello: extcmd +video: +shift_test: functional_test +minix2_be: +hashsum: extcmd crypto normal +gdb: backtrace serial +video_colors: +mdraid1x: diskfilter +gcry_twofish: crypto +gcry_sha512: crypto +cryptodisk: procfs extcmd crypto +parttool: normal +ohci: boot cs5536 usb pci +mmap: boot +minix3: +gfxmenu: gfxterm font normal bitmap video video_colors bitmap_scale trig +dm_nv: diskfilter +search_fs_file: +pxe: boot net +luks: crypto pbkdf2 afsplitter cryptodisk +ldm: part_msdos part_gpt diskfilter +hfsplus: fshelp +hfs: fshelp +hexdump: extcmd +gettext: +gcry_rijndael: crypto +aout: +terminal: +probe: extcmd +plan9: relocator extcmd verifiers boot video +functional_test: extcmd btrfs video_fb video +minicmd: +geli: crypto pbkdf2 gcry_sha256 cryptodisk gcry_sha512 +gcry_rfc2268: crypto +f2fs: fshelp +ext2: fshelp +bsd: relocator extcmd gcry_md5 cpuid crypto verifiers boot elf video mmap aout serial vbe +terminfo: extcmd +legacy_password_test: functional_test legacycfg +gcry_crc: crypto +gcry_camellia: crypto +bitmap_scale: bitmap +biosdisk: +part_dfly: +cbtable: +usbms: scsi usb +sleep_test: datetime functional_test +div_test: div functional_test +zfsinfo: zfs +wrmsr: +sendkey: extcmd boot +newc: archelp +multiboot: relocator lsapm boot net linux video mmap vbe +linux16: relocator boot linux video mmap +keystatus: extcmd +jfs: +gcry_md4: crypto +pci: +mdraid09: diskfilter +iso9660: fshelp +cmdline_cat_test: procfs video_fb font normal functional_test +bswap_test: functional_test +afs: fshelp +search_label: +reboot: relocator +pgp: extcmd verifiers crypto mpi gcry_sha1 +xnu_uuid_test: functional_test +test_blockarg: extcmd normal +serial: extcmd terminfo +configfile: normal +cmosdump: +romfs: fshelp +minix_be: +help: extcmd normal +halt: extcmd acpi +gcry_sha1: crypto +usbserial_usbdebug: usb serial usbserial_common +usbserial_ftdi: usb serial usbserial_common +hdparm: extcmd hexdump +trig: +vbe: video_fb video +tar: archelp +legacycfg: gcry_md5 crypto normal password linux +ahci: ata boot pci +915resolution: +pbkdf2_test: pbkdf2 functional_test gcry_sha1 +macho: +smbios: extcmd acpi +signature_test: procfs functional_test +gcry_serpent: crypto +bfs: fshelp +usbserial_common: usb serial +truecrypt: relocator boot gzio video mmap +ntldr: relocator boot chain video +exfctest: functional_test +exfat: fshelp +all_video: vbe vga video_bochs video_cirrus diff --git a/files/grub_unbuntu22-04/i386-pc/modinfo.sh b/files/grub_unbuntu22-04/i386-pc/modinfo.sh new file mode 100755 index 0000000000000000000000000000000000000000..8bc6f0b231b4bfb54a046c4d322bb89d13ef688c --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/modinfo.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# User-controllable options +grub_modinfo_target_cpu=i386 +grub_modinfo_platform=pc +grub_disk_cache_stats=0 +grub_boot_time_stats=0 +grub_have_font_source=1 + +# Autodetected config +grub_have_asm_uscore=0 +grub_bss_start_symbol="__bss_start" +grub_end_symbol="end" + +# Build environment +grub_target_cc='gcc-10' +grub_target_cc_version='gcc-10 (Ubuntu 10.4.0-4ubuntu1~22.04) 10.4.0' +grub_target_cflags='-std=gnu99 -Os -m32 -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2 -march=i386 -mrtd -mregparm=3 -falign-jumps=1 -falign-loops=1 -falign-functions=1 -freg-struct-return -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow -msoft-float -fno-dwarf2-cfi-asm -mno-stack-arg-probe -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-ident -fno-PIE -fno-pie -fno-stack-protector -Wtrampolines -Werror' +grub_target_cppflags='-Wno-unused-but-set-variable -Wall -W -DGRUB_MACHINE_PCBIOS=1 -DGRUB_MACHINE=I386_PC -m32 -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/10/include -I$(top_srcdir)/include -I$(top_builddir)/include' +grub_target_ccasflags=' -m32 -g -msoft-float -fno-PIE -fno-pie' +grub_target_ldflags='-no-pie -m32 -Wl,-melf_i386 -no-pie -Wl,--build-id=none' +grub_cflags='' +grub_cppflags=' -D_FILE_OFFSET_BITS=64' +grub_ccasflags='' +grub_ldflags='' +grub_target_strip='strip' +grub_target_nm='nm' +grub_target_ranlib='ranlib' +grub_target_objconf='' +grub_target_obj2elf='' +grub_target_img_base_ldopt='-Wl,-Ttext' +grub_target_img_ldflags='@TARGET_IMG_BASE_LDFLAGS@' + +# Version +grub_version="2.06" +grub_package="grub" +grub_package_string="GRUB 2.06-2ubuntu7.1" +grub_package_version="2.06-2ubuntu7.1" +grub_package_name="GRUB" +grub_package_bugreport="bug-grub@gnu.org" diff --git a/files/grub_unbuntu22-04/i386-pc/morse.mod b/files/grub_unbuntu22-04/i386-pc/morse.mod new file mode 100644 index 0000000000000000000000000000000000000000..fb5b74ebee7b440f1a265e4bf66e1a4bd0995057 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/morse.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mpi.mod b/files/grub_unbuntu22-04/i386-pc/mpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..6a014a9c67f8e061fdce300dfec8efd67d4f26f4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mpi.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/msdospart.mod b/files/grub_unbuntu22-04/i386-pc/msdospart.mod new file mode 100644 index 0000000000000000000000000000000000000000..4e02e918bc6852f15d8efb1a47a878124c2e6126 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/msdospart.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/mul_test.mod b/files/grub_unbuntu22-04/i386-pc/mul_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..583f940e421e5aed56dc056d529a7cbe9a3d677a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/mul_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/multiboot.mod b/files/grub_unbuntu22-04/i386-pc/multiboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..a74cfb1b61a504ba488839fe3faf69f6ad41945c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/multiboot.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/multiboot2.mod b/files/grub_unbuntu22-04/i386-pc/multiboot2.mod new file mode 100644 index 0000000000000000000000000000000000000000..10f09757f96d7af4783b5f4b15097809324e26cc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/multiboot2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/nativedisk.mod b/files/grub_unbuntu22-04/i386-pc/nativedisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..ed54856457c72658c2ed2074852788b54417a6b9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/nativedisk.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/net.mod b/files/grub_unbuntu22-04/i386-pc/net.mod new file mode 100644 index 0000000000000000000000000000000000000000..f4fc7fa1b834541285199a6aa141fd5d069610b1 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/net.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/newc.mod b/files/grub_unbuntu22-04/i386-pc/newc.mod new file mode 100644 index 0000000000000000000000000000000000000000..2a734b29998f34c9fb7b2fce01ed1049123a83cb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/newc.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/nilfs2.mod b/files/grub_unbuntu22-04/i386-pc/nilfs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..6fa8baa3f61ca3a476c4c3a76a10c0015a31e63c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/nilfs2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/normal.mod b/files/grub_unbuntu22-04/i386-pc/normal.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5005c7abc1fc19c47e0f1d1395239709ab6182a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/normal.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ntfs.mod b/files/grub_unbuntu22-04/i386-pc/ntfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..9eef1a80add11909a7766a57c0f069c1ee4c5b99 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ntfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ntfscomp.mod b/files/grub_unbuntu22-04/i386-pc/ntfscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..711e1a3c955d23a8ea43b44cfc34d7623374fb8f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ntfscomp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ntldr.mod b/files/grub_unbuntu22-04/i386-pc/ntldr.mod new file mode 100644 index 0000000000000000000000000000000000000000..903f2d00aca4c5d554cfe3044643fdbe33b30c17 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ntldr.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/odc.mod b/files/grub_unbuntu22-04/i386-pc/odc.mod new file mode 100644 index 0000000000000000000000000000000000000000..fe01e63adf1c9fbfc391a90da87d86eb074505a8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/odc.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/offsetio.mod b/files/grub_unbuntu22-04/i386-pc/offsetio.mod new file mode 100644 index 0000000000000000000000000000000000000000..3c4fb847a405f0db210a48450832fb93a2ca0682 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/offsetio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ohci.mod b/files/grub_unbuntu22-04/i386-pc/ohci.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e88c5cf5228b6acd969613d918b58b86337dfa8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ohci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_acorn.mod b/files/grub_unbuntu22-04/i386-pc/part_acorn.mod new file mode 100644 index 0000000000000000000000000000000000000000..442dc8bfab3feff37677bc7ee6c3a4693c2da77b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_acorn.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_amiga.mod b/files/grub_unbuntu22-04/i386-pc/part_amiga.mod new file mode 100644 index 0000000000000000000000000000000000000000..4bd540375da308469e8237060fbc5a2c8ba47ffc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_amiga.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_apple.mod b/files/grub_unbuntu22-04/i386-pc/part_apple.mod new file mode 100644 index 0000000000000000000000000000000000000000..205b563be396147ea0e0f41962ea6467618d28bb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_apple.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_bsd.mod b/files/grub_unbuntu22-04/i386-pc/part_bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..a667000a75628cf8e1acf7f541b22fa9cbaff375 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_bsd.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_dfly.mod b/files/grub_unbuntu22-04/i386-pc/part_dfly.mod new file mode 100644 index 0000000000000000000000000000000000000000..e8c8326e0127d555cab6d3ba7ea775c5edce4ad5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_dfly.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_dvh.mod b/files/grub_unbuntu22-04/i386-pc/part_dvh.mod new file mode 100644 index 0000000000000000000000000000000000000000..7eedf15b5ae515020f13ce28cc12d8b2fe07f1cd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_dvh.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_gpt.mod b/files/grub_unbuntu22-04/i386-pc/part_gpt.mod new file mode 100644 index 0000000000000000000000000000000000000000..d63457704be2752dae5a6681b51d29a15189524c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_gpt.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_msdos.mod b/files/grub_unbuntu22-04/i386-pc/part_msdos.mod new file mode 100644 index 0000000000000000000000000000000000000000..b2285358c2bab786a56c302d8bc6bf4558750484 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_msdos.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_plan.mod b/files/grub_unbuntu22-04/i386-pc/part_plan.mod new file mode 100644 index 0000000000000000000000000000000000000000..abcf5ef2f9636ddc452cdebd4e8f1d78348f92e7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_plan.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_sun.mod b/files/grub_unbuntu22-04/i386-pc/part_sun.mod new file mode 100644 index 0000000000000000000000000000000000000000..e5c1fbdf1a4e1b29c5833e0f402135e4951ede8f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_sun.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/part_sunpc.mod b/files/grub_unbuntu22-04/i386-pc/part_sunpc.mod new file mode 100644 index 0000000000000000000000000000000000000000..504eb85745667bfae790c3cc12ed3fabf7d379de Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/part_sunpc.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/partmap.lst b/files/grub_unbuntu22-04/i386-pc/partmap.lst new file mode 100644 index 0000000000000000000000000000000000000000..761233aa26765d4bb746b00ff5a1715158c5a07e --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/partmap.lst @@ -0,0 +1,11 @@ +part_acorn +part_amiga +part_apple +part_bsd +part_dfly +part_dvh +part_gpt +part_msdos +part_plan +part_sun +part_sunpc diff --git a/files/grub_unbuntu22-04/i386-pc/parttool.lst b/files/grub_unbuntu22-04/i386-pc/parttool.lst new file mode 100644 index 0000000000000000000000000000000000000000..68b4b5c453c586af96c276e4f9d7620a3bc39e0f --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/parttool.lst @@ -0,0 +1 @@ +msdos: msdospart diff --git a/files/grub_unbuntu22-04/i386-pc/parttool.mod b/files/grub_unbuntu22-04/i386-pc/parttool.mod new file mode 100644 index 0000000000000000000000000000000000000000..748723dfc4e2120461ae7421729e87a3299fdfa4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/parttool.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/password.mod b/files/grub_unbuntu22-04/i386-pc/password.mod new file mode 100644 index 0000000000000000000000000000000000000000..e2493f9ef32554561426aa1376bff268ed88464b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/password.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/password_pbkdf2.mod b/files/grub_unbuntu22-04/i386-pc/password_pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..09d54b7fd124ff3879278bf007e1d4f21516515c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/password_pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pata.mod b/files/grub_unbuntu22-04/i386-pc/pata.mod new file mode 100644 index 0000000000000000000000000000000000000000..65293d7a9fba11ed1568f93841e594c37c3408ef Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pata.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pbkdf2.mod b/files/grub_unbuntu22-04/i386-pc/pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..59559caa7c1faec0fa2ca4812ecca123d34cd106 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pbkdf2_test.mod b/files/grub_unbuntu22-04/i386-pc/pbkdf2_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..eb96f20543872a3fc8cc3985cff9caf62da477af Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pbkdf2_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pci.mod b/files/grub_unbuntu22-04/i386-pc/pci.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e2c7489c308948f42bb382b75821b2343be6b14 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pcidump.mod b/files/grub_unbuntu22-04/i386-pc/pcidump.mod new file mode 100644 index 0000000000000000000000000000000000000000..463cc4cd269c206eee3a87acfb4170b774559492 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pcidump.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pgp.mod b/files/grub_unbuntu22-04/i386-pc/pgp.mod new file mode 100644 index 0000000000000000000000000000000000000000..41b3c38215c8efb411d67ebf50b38bafb7d6246c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pgp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/plan9.mod b/files/grub_unbuntu22-04/i386-pc/plan9.mod new file mode 100644 index 0000000000000000000000000000000000000000..5822d47c6633c42e0d5cca832d6aa1dc09100fda Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/plan9.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/play.mod b/files/grub_unbuntu22-04/i386-pc/play.mod new file mode 100644 index 0000000000000000000000000000000000000000..196e4afa5184671d63ec8fe780871cbdc6aaccae Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/play.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/png.mod b/files/grub_unbuntu22-04/i386-pc/png.mod new file mode 100644 index 0000000000000000000000000000000000000000..60e0e00ea602de163ee953f310ed8acc170eadae Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/png.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/priority_queue.mod b/files/grub_unbuntu22-04/i386-pc/priority_queue.mod new file mode 100644 index 0000000000000000000000000000000000000000..4096cdc92893eee49a5c46fc1b3494ef0be1c3b5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/priority_queue.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/probe.mod b/files/grub_unbuntu22-04/i386-pc/probe.mod new file mode 100644 index 0000000000000000000000000000000000000000..917e75e47f5dd3a3ebbb85eb2d27b188569a5558 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/probe.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/procfs.mod b/files/grub_unbuntu22-04/i386-pc/procfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..12fed3f3d8ab644de5bad36cd0482f9c9ddcb959 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/procfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/progress.mod b/files/grub_unbuntu22-04/i386-pc/progress.mod new file mode 100644 index 0000000000000000000000000000000000000000..38e50c745d00519ea51b853c80472cb8528f2495 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/progress.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pxe.mod b/files/grub_unbuntu22-04/i386-pc/pxe.mod new file mode 100644 index 0000000000000000000000000000000000000000..ced69e39974eb33ee8c12e80f5609327f3b1fa0c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pxe.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/pxeboot.img b/files/grub_unbuntu22-04/i386-pc/pxeboot.img new file mode 100644 index 0000000000000000000000000000000000000000..42b3f356b2bef689ba3b6450fd7adc88c3e3af34 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pxeboot.img differ diff --git a/files/grub_unbuntu22-04/i386-pc/pxechain.mod b/files/grub_unbuntu22-04/i386-pc/pxechain.mod new file mode 100644 index 0000000000000000000000000000000000000000..9a860f1ab237e0dc044978aab796abf6bdca2181 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/pxechain.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/raid5rec.mod b/files/grub_unbuntu22-04/i386-pc/raid5rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..b6bf68d324725fb115bb9295e9f61ae065ad8e5a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/raid5rec.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/raid6rec.mod b/files/grub_unbuntu22-04/i386-pc/raid6rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..5f00bafc278b46b8f3c23f6e78f48fdc46734309 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/raid6rec.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/random.mod b/files/grub_unbuntu22-04/i386-pc/random.mod new file mode 100644 index 0000000000000000000000000000000000000000..c094424e53b0dbf93d4b84c7f646af8fcdbaa52f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/random.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/rdmsr.mod b/files/grub_unbuntu22-04/i386-pc/rdmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..9eed52ed6ed4a82d5b54c74faf6a72e9cbfe3ca1 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/rdmsr.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/read.mod b/files/grub_unbuntu22-04/i386-pc/read.mod new file mode 100644 index 0000000000000000000000000000000000000000..dce3b5f45e0a20eb915878bf8eb5790db1200aec Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/read.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/reboot.mod b/files/grub_unbuntu22-04/i386-pc/reboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..05217bc7a66af046f37cd9910572708918e2d036 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/reboot.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/regexp.mod b/files/grub_unbuntu22-04/i386-pc/regexp.mod new file mode 100644 index 0000000000000000000000000000000000000000..b9bdcfb06959a0b5430b44b43a095417913620f0 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/regexp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/reiserfs.mod b/files/grub_unbuntu22-04/i386-pc/reiserfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4a49b50fa89842ce702a4d0af5481023ff3538fa Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/reiserfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/relocator.mod b/files/grub_unbuntu22-04/i386-pc/relocator.mod new file mode 100644 index 0000000000000000000000000000000000000000..f93f5ca976677cc88fd0bebd586a378f5e818f42 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/relocator.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/romfs.mod b/files/grub_unbuntu22-04/i386-pc/romfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6fd2cd2ee2d4ab35e0d5de0410c5bd5aca87da5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/romfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/scsi.mod b/files/grub_unbuntu22-04/i386-pc/scsi.mod new file mode 100644 index 0000000000000000000000000000000000000000..cee3bd02578139321f2e8fac73e33f581198aedb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/scsi.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/search.mod b/files/grub_unbuntu22-04/i386-pc/search.mod new file mode 100644 index 0000000000000000000000000000000000000000..14d31d6a39ac35068d436951230affed9c2c4fec Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/search.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/search_fs_file.mod b/files/grub_unbuntu22-04/i386-pc/search_fs_file.mod new file mode 100644 index 0000000000000000000000000000000000000000..40ceb19208a52babce20e7eb84fdb9dad509054c Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/search_fs_file.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/search_fs_uuid.mod b/files/grub_unbuntu22-04/i386-pc/search_fs_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..63ae3d4081c037a03aba20be23e2cc6af626169e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/search_fs_uuid.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/search_label.mod b/files/grub_unbuntu22-04/i386-pc/search_label.mod new file mode 100644 index 0000000000000000000000000000000000000000..e50e9c08eea1ff1d71705f044a03168170768246 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/search_label.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/sendkey.mod b/files/grub_unbuntu22-04/i386-pc/sendkey.mod new file mode 100644 index 0000000000000000000000000000000000000000..05f8f0c130015d4c0ffe48f3847097e19da8cf13 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/sendkey.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/serial.mod b/files/grub_unbuntu22-04/i386-pc/serial.mod new file mode 100644 index 0000000000000000000000000000000000000000..fa823322048788c753d5cc12880c516c51fc1255 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/serial.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/setjmp.mod b/files/grub_unbuntu22-04/i386-pc/setjmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..9ede5cba8972c8904cfef0eae882203d64bfddef Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/setjmp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/setjmp_test.mod b/files/grub_unbuntu22-04/i386-pc/setjmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a7c93e7499e6b365cdac76a5bb4186960ce51b6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/setjmp_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/setpci.mod b/files/grub_unbuntu22-04/i386-pc/setpci.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5682ed6f3a34a77beed32b2a16bd20139a11417 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/setpci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/sfs.mod b/files/grub_unbuntu22-04/i386-pc/sfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..a9813464a5c0efeec21b5c34d9c2b76179f3033f Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/sfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/shift_test.mod b/files/grub_unbuntu22-04/i386-pc/shift_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..b35f62867b493d3d4c73003df5b0672ebde78aef Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/shift_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/signature_test.mod b/files/grub_unbuntu22-04/i386-pc/signature_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..67b20a872f4ffe22b59c510dff079899aab1e002 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/signature_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/sleep.mod b/files/grub_unbuntu22-04/i386-pc/sleep.mod new file mode 100644 index 0000000000000000000000000000000000000000..d4fe8da60c39bdaa107ffcd93c7fe18a370b08b6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/sleep.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/sleep_test.mod b/files/grub_unbuntu22-04/i386-pc/sleep_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a939c3c16846f177e33b144029975bfb21451585 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/sleep_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/smbios.mod b/files/grub_unbuntu22-04/i386-pc/smbios.mod new file mode 100644 index 0000000000000000000000000000000000000000..a28d0766cedbef578301827f43497b3098238cdd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/smbios.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/spkmodem.mod b/files/grub_unbuntu22-04/i386-pc/spkmodem.mod new file mode 100644 index 0000000000000000000000000000000000000000..fac95db86927cd1a9ef9b268f81dec954b15da08 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/spkmodem.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/squash4.mod b/files/grub_unbuntu22-04/i386-pc/squash4.mod new file mode 100644 index 0000000000000000000000000000000000000000..44c1f72ac2d7ad0bb447f67c3985f427d21eed05 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/squash4.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/strtoull_test.mod b/files/grub_unbuntu22-04/i386-pc/strtoull_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..9c3c2790fc3aad1eb47222c40c9ec14691f4108b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/strtoull_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/syslinuxcfg.mod b/files/grub_unbuntu22-04/i386-pc/syslinuxcfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e2d7657fe447a11250123f721a0faada20c3c05 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/syslinuxcfg.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/tar.mod b/files/grub_unbuntu22-04/i386-pc/tar.mod new file mode 100644 index 0000000000000000000000000000000000000000..32124e6b72d6ed8d5dfd6827d28d599aef52cdc7 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/tar.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/terminal.lst b/files/grub_unbuntu22-04/i386-pc/terminal.lst new file mode 100644 index 0000000000000000000000000000000000000000..2cb224c4d138da131ea79120bc32a50f275c35fa --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/terminal.lst @@ -0,0 +1,11 @@ +iat_keyboard: at_keyboard +iserial: serial +iserial_*: serial +oaudio: morse +ocbmemc: cbmemc +ogfxterm: gfxterm +omda_text: mda_text +oserial: serial +oserial_*: serial +ospkmodem: spkmodem +ovga_text: vga_text diff --git a/files/grub_unbuntu22-04/i386-pc/terminal.mod b/files/grub_unbuntu22-04/i386-pc/terminal.mod new file mode 100644 index 0000000000000000000000000000000000000000..da7fe467f2b3d756ef876cc66ed01bdb8756117d Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/terminal.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/terminfo.mod b/files/grub_unbuntu22-04/i386-pc/terminfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..d530ab65de3d4835d02b83979a6b4ae58410f6ea Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/terminfo.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/test.mod b/files/grub_unbuntu22-04/i386-pc/test.mod new file mode 100644 index 0000000000000000000000000000000000000000..834ea7d65ba10a9905d55a32f2f59bf8cf173743 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/test_blockarg.mod b/files/grub_unbuntu22-04/i386-pc/test_blockarg.mod new file mode 100644 index 0000000000000000000000000000000000000000..9416c16a6e99a78568ea8c4b7b48b3153d1291ca Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/test_blockarg.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/testload.mod b/files/grub_unbuntu22-04/i386-pc/testload.mod new file mode 100644 index 0000000000000000000000000000000000000000..816238139d8ba562584753ed75aa290d5c63477e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/testload.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/testspeed.mod b/files/grub_unbuntu22-04/i386-pc/testspeed.mod new file mode 100644 index 0000000000000000000000000000000000000000..af34db19cfe00cc5cf10428657b4a839cde286aa Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/testspeed.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/tftp.mod b/files/grub_unbuntu22-04/i386-pc/tftp.mod new file mode 100644 index 0000000000000000000000000000000000000000..0e9103e628fe6060a336a4b69aedd0d2b6bab4a2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/tftp.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/tga.mod b/files/grub_unbuntu22-04/i386-pc/tga.mod new file mode 100644 index 0000000000000000000000000000000000000000..793c1a7a1662d23ed7d0853293c8eb140d2ef110 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/tga.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/time.mod b/files/grub_unbuntu22-04/i386-pc/time.mod new file mode 100644 index 0000000000000000000000000000000000000000..69d562dbff36839c6836adb87eed46d51d8c9a48 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/time.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/tr.mod b/files/grub_unbuntu22-04/i386-pc/tr.mod new file mode 100644 index 0000000000000000000000000000000000000000..c16c25c494bb3aa109a1183e77e0215f7308f7c2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/tr.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/trig.mod b/files/grub_unbuntu22-04/i386-pc/trig.mod new file mode 100644 index 0000000000000000000000000000000000000000..47166ce6255c8b957d6114c75a711acc3e4c7bea Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/trig.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/true.mod b/files/grub_unbuntu22-04/i386-pc/true.mod new file mode 100644 index 0000000000000000000000000000000000000000..e74d756f101a5924c2b1f76e62d43e963c025af2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/true.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/truecrypt.mod b/files/grub_unbuntu22-04/i386-pc/truecrypt.mod new file mode 100644 index 0000000000000000000000000000000000000000..8ff623d0d8ccf506279b3c4f6907949c6ffb714e Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/truecrypt.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/udf.mod b/files/grub_unbuntu22-04/i386-pc/udf.mod new file mode 100644 index 0000000000000000000000000000000000000000..37a975a3e06ebfa7b8490f4fc73717ef5d8aeabd Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/udf.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ufs1.mod b/files/grub_unbuntu22-04/i386-pc/ufs1.mod new file mode 100644 index 0000000000000000000000000000000000000000..31bc466a490772c1e3fca6403e7639dacc67b7e3 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ufs1.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ufs1_be.mod b/files/grub_unbuntu22-04/i386-pc/ufs1_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..947f09af686e57536506728cdd3f71fc64f6f7bb Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ufs1_be.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/ufs2.mod b/files/grub_unbuntu22-04/i386-pc/ufs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..40b59c3b9b15ecc114189d9349ef150f6bb20df9 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/ufs2.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/uhci.mod b/files/grub_unbuntu22-04/i386-pc/uhci.mod new file mode 100644 index 0000000000000000000000000000000000000000..a53863877cd388e305a991ccaf3ef790cb7c8840 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/uhci.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usb.mod b/files/grub_unbuntu22-04/i386-pc/usb.mod new file mode 100644 index 0000000000000000000000000000000000000000..7ebfda2b7e11dd4bf748069a31f64a3423b19103 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usb.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usb_keyboard.mod b/files/grub_unbuntu22-04/i386-pc/usb_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..90ad27ab2596c4b52d62d0605b8176bede39adae Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usb_keyboard.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbms.mod b/files/grub_unbuntu22-04/i386-pc/usbms.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6e9441a61d25916a57012914fb16d347e803388 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbms.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbserial_common.mod b/files/grub_unbuntu22-04/i386-pc/usbserial_common.mod new file mode 100644 index 0000000000000000000000000000000000000000..b7202a0f0fe47cd5acaea1767583ab679945935d Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbserial_common.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbserial_ftdi.mod b/files/grub_unbuntu22-04/i386-pc/usbserial_ftdi.mod new file mode 100644 index 0000000000000000000000000000000000000000..3fb068db1aaa3247ab0e53279a346609fedee23a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbserial_ftdi.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbserial_pl2303.mod b/files/grub_unbuntu22-04/i386-pc/usbserial_pl2303.mod new file mode 100644 index 0000000000000000000000000000000000000000..ce31023dfda9609711facd4ea4dc1d0d7b520cf8 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbserial_pl2303.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbserial_usbdebug.mod b/files/grub_unbuntu22-04/i386-pc/usbserial_usbdebug.mod new file mode 100644 index 0000000000000000000000000000000000000000..5685e8b1467d7c349585fae93a891a1216bee379 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbserial_usbdebug.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/usbtest.mod b/files/grub_unbuntu22-04/i386-pc/usbtest.mod new file mode 100644 index 0000000000000000000000000000000000000000..6602eda89d55152f49583a79474db299c047642b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/usbtest.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/vbe.mod b/files/grub_unbuntu22-04/i386-pc/vbe.mod new file mode 100644 index 0000000000000000000000000000000000000000..5266ae3e42378e838fd393eba6ff2b7fb6fc5db5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/vbe.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/verifiers.mod b/files/grub_unbuntu22-04/i386-pc/verifiers.mod new file mode 100644 index 0000000000000000000000000000000000000000..989311a7feb2ba8272aedaf58693bfa9e560f0f5 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/verifiers.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/vga.mod b/files/grub_unbuntu22-04/i386-pc/vga.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a11b5209fda1b22aaa28c884953b4d5ee3a00e4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/vga.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/vga_text.mod b/files/grub_unbuntu22-04/i386-pc/vga_text.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b6c46a443e6b19705fc32724b05d8d6fa7f4ddc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/vga_text.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/video.lst b/files/grub_unbuntu22-04/i386-pc/video.lst new file mode 100644 index 0000000000000000000000000000000000000000..6ca853e651771c2197dbb1b65d349277a529c795 --- /dev/null +++ b/files/grub_unbuntu22-04/i386-pc/video.lst @@ -0,0 +1,4 @@ +vbe +vga +video_bochs +video_cirrus diff --git a/files/grub_unbuntu22-04/i386-pc/video.mod b/files/grub_unbuntu22-04/i386-pc/video.mod new file mode 100644 index 0000000000000000000000000000000000000000..ce2df48bd64f1de0e09ccace09422371c9181176 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/video.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/video_bochs.mod b/files/grub_unbuntu22-04/i386-pc/video_bochs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4894887fb6b66d868840269c0d7200ae7952a72b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/video_bochs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/video_cirrus.mod b/files/grub_unbuntu22-04/i386-pc/video_cirrus.mod new file mode 100644 index 0000000000000000000000000000000000000000..bb7ed5eb4956fd96377d0f1a472bb918d05612f2 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/video_cirrus.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/video_colors.mod b/files/grub_unbuntu22-04/i386-pc/video_colors.mod new file mode 100644 index 0000000000000000000000000000000000000000..d403f49336d02122c8bb77d87d30960f3bcc20db Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/video_colors.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/video_fb.mod b/files/grub_unbuntu22-04/i386-pc/video_fb.mod new file mode 100644 index 0000000000000000000000000000000000000000..b1440bacb9dcf17fadfb74ce051759828846c373 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/video_fb.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/videoinfo.mod b/files/grub_unbuntu22-04/i386-pc/videoinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..d46d204d225b3031c60b475b59722c558c3e3581 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/videoinfo.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/videotest.mod b/files/grub_unbuntu22-04/i386-pc/videotest.mod new file mode 100644 index 0000000000000000000000000000000000000000..22298462a16741a529d6ed31c8ceaefd2663d5d6 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/videotest.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/videotest_checksum.mod b/files/grub_unbuntu22-04/i386-pc/videotest_checksum.mod new file mode 100644 index 0000000000000000000000000000000000000000..ad5c01de8f4ff8fe1ac80c5a0cbc02424de1d776 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/videotest_checksum.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/wrmsr.mod b/files/grub_unbuntu22-04/i386-pc/wrmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..cfff31c23312e3b2c09ae18afa0fb0e39abea6c4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/wrmsr.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/xfs.mod b/files/grub_unbuntu22-04/i386-pc/xfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4765dd10c443db7cef62cbf07d5c509d39e0b2c4 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/xfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/xnu.mod b/files/grub_unbuntu22-04/i386-pc/xnu.mod new file mode 100644 index 0000000000000000000000000000000000000000..04a49223c6d41c64223960d54be96e9ac9b53a21 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/xnu.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/xnu_uuid.mod b/files/grub_unbuntu22-04/i386-pc/xnu_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..45a956f3ba7a84505775fb9c98ac1cc7cf2cb411 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/xnu_uuid.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/xnu_uuid_test.mod b/files/grub_unbuntu22-04/i386-pc/xnu_uuid_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..05ed8ae9abf841bf57ae2a8bcd1b2b0bd9da7088 Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/xnu_uuid_test.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/xzio.mod b/files/grub_unbuntu22-04/i386-pc/xzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..8ac81189ed3cbada396f619be5998a389418a3ec Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/xzio.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/zfs.mod b/files/grub_unbuntu22-04/i386-pc/zfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..6fa839eaf67c25c67b202f791c92900b9714f6dc Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/zfs.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/zfscrypt.mod b/files/grub_unbuntu22-04/i386-pc/zfscrypt.mod new file mode 100644 index 0000000000000000000000000000000000000000..c3f98de29c7a7a37665cd9d0311d05ba1a27491b Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/zfscrypt.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/zfsinfo.mod b/files/grub_unbuntu22-04/i386-pc/zfsinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..0d7de667cd4344cfcfe67db56b2a59aa5ee652be Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/zfsinfo.mod differ diff --git a/files/grub_unbuntu22-04/i386-pc/zstd.mod b/files/grub_unbuntu22-04/i386-pc/zstd.mod new file mode 100644 index 0000000000000000000000000000000000000000..e8790cc3dc38b45e71cd524b4ff512c5cb40215a Binary files /dev/null and b/files/grub_unbuntu22-04/i386-pc/zstd.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi-signed/gcdx64.efi.signed b/files/grub_unbuntu22-04/x86_64-efi-signed/gcdx64.efi.signed new file mode 100644 index 0000000000000000000000000000000000000000..6d57ad94d9faee5d907e99610143fba9ff899a0c Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi-signed/gcdx64.efi.signed differ diff --git a/files/grub_unbuntu22-04/x86_64-efi-signed/grubnetx64.efi.signed b/files/grub_unbuntu22-04/x86_64-efi-signed/grubnetx64.efi.signed new file mode 100644 index 0000000000000000000000000000000000000000..4ed91f0e7e23ab5a4d61ee0f834598712607643f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi-signed/grubnetx64.efi.signed differ diff --git a/files/grub_unbuntu22-04/x86_64-efi-signed/grubx64.efi.signed b/files/grub_unbuntu22-04/x86_64-efi-signed/grubx64.efi.signed new file mode 100644 index 0000000000000000000000000000000000000000..e715d2293c279b390974a09017f0ff0a5e195ae0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi-signed/grubx64.efi.signed differ diff --git a/files/grub_unbuntu22-04/x86_64-efi-signed/version b/files/grub_unbuntu22-04/x86_64-efi-signed/version new file mode 100644 index 0000000000000000000000000000000000000000..a7e0db98e526f2be2998fb8129969038aa0fe590 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi-signed/version @@ -0,0 +1 @@ +2.06-2ubuntu14.1 diff --git a/files/grub_unbuntu22-04/x86_64-efi/acpi.mod b/files/grub_unbuntu22-04/x86_64-efi/acpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..cd21abd3c9347333cbcdaa099ee6c0bf4d92566f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/acpi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/adler32.mod b/files/grub_unbuntu22-04/x86_64-efi/adler32.mod new file mode 100644 index 0000000000000000000000000000000000000000..f960eeada5d74ad7e1922d38b4aec04514987524 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/adler32.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/affs.mod b/files/grub_unbuntu22-04/x86_64-efi/affs.mod new file mode 100644 index 0000000000000000000000000000000000000000..fe5d13145b4b9673e2024ff2c335fcd4267041c8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/affs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/afs.mod b/files/grub_unbuntu22-04/x86_64-efi/afs.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5fd0b02a2df1aded8f2ec7a9e86518a67448820 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/afs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/afsplitter.mod b/files/grub_unbuntu22-04/x86_64-efi/afsplitter.mod new file mode 100644 index 0000000000000000000000000000000000000000..e77f6f1fd4856432025053699446325983c11a8d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/afsplitter.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ahci.mod b/files/grub_unbuntu22-04/x86_64-efi/ahci.mod new file mode 100644 index 0000000000000000000000000000000000000000..e0cab77bbdbd5cc968bdd57da8066c32a3056742 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ahci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/all_video.mod b/files/grub_unbuntu22-04/x86_64-efi/all_video.mod new file mode 100644 index 0000000000000000000000000000000000000000..33323954c5429027fdb02303b9e34ff7f0f7f7a1 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/all_video.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/aout.mod b/files/grub_unbuntu22-04/x86_64-efi/aout.mod new file mode 100644 index 0000000000000000000000000000000000000000..9a0c59fd2abeda18f922100802043ca4d375e8b5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/aout.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/appleldr.mod b/files/grub_unbuntu22-04/x86_64-efi/appleldr.mod new file mode 100644 index 0000000000000000000000000000000000000000..01d2844f320aa080bda8805fc1b5a87aa186e9d8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/appleldr.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/archelp.mod b/files/grub_unbuntu22-04/x86_64-efi/archelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..b66853f9563cba8a4aab310d9de4aa8605d40e9f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/archelp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/at_keyboard.mod b/files/grub_unbuntu22-04/x86_64-efi/at_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..b852b6d2893f4bee4957aefc81766720c0d164e9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/at_keyboard.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ata.mod b/files/grub_unbuntu22-04/x86_64-efi/ata.mod new file mode 100644 index 0000000000000000000000000000000000000000..4973696ddc7e2de2a9ff293381eba6003618b544 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ata.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/backtrace.mod b/files/grub_unbuntu22-04/x86_64-efi/backtrace.mod new file mode 100644 index 0000000000000000000000000000000000000000..520334bd44ed3ba7f11fe9ca73a86d2cdf6182e1 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/backtrace.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bfs.mod b/files/grub_unbuntu22-04/x86_64-efi/bfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..434226c56408cae7f9c532ec8f92a8e56f835410 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bitmap.mod b/files/grub_unbuntu22-04/x86_64-efi/bitmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..c375363e41d8304eea1c4ed71d2fb4597e51ede0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bitmap.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bitmap_scale.mod b/files/grub_unbuntu22-04/x86_64-efi/bitmap_scale.mod new file mode 100644 index 0000000000000000000000000000000000000000..99ac6d465c979cb7ec27235fc810b1af8fe4b560 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bitmap_scale.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/blocklist.mod b/files/grub_unbuntu22-04/x86_64-efi/blocklist.mod new file mode 100644 index 0000000000000000000000000000000000000000..5d3348e9d68aff380904222cce9ba3c5a9889952 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/blocklist.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/boot.mod b/files/grub_unbuntu22-04/x86_64-efi/boot.mod new file mode 100644 index 0000000000000000000000000000000000000000..be08cb0fdc5777eea491b5f236eb57abe7fdecbb Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/boot.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bsd.mod b/files/grub_unbuntu22-04/x86_64-efi/bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..a2494023793b79d9b37535d4646c86e77b1f49cf Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bsd.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bswap_test.mod b/files/grub_unbuntu22-04/x86_64-efi/bswap_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..af64bd2fe371445e07859fc35a493a28edbfbabd Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bswap_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/btrfs.mod b/files/grub_unbuntu22-04/x86_64-efi/btrfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..23a58fe35c6ba10abf6d934a1584879ee2317b31 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/btrfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/bufio.mod b/files/grub_unbuntu22-04/x86_64-efi/bufio.mod new file mode 100644 index 0000000000000000000000000000000000000000..c2172d81fe9826917bd5b1eed8d93cca469e4955 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/bufio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cat.mod b/files/grub_unbuntu22-04/x86_64-efi/cat.mod new file mode 100644 index 0000000000000000000000000000000000000000..5a8672c212381e0f6405ab280d282669515d5d4d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cat.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cbfs.mod b/files/grub_unbuntu22-04/x86_64-efi/cbfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..8f1b7e54f27d99c71955e9f5fbeeb3c67e6b138b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cbfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cbls.mod b/files/grub_unbuntu22-04/x86_64-efi/cbls.mod new file mode 100644 index 0000000000000000000000000000000000000000..21c01ef2ad52402589dfa441b93cc45105f57536 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cbls.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cbmemc.mod b/files/grub_unbuntu22-04/x86_64-efi/cbmemc.mod new file mode 100644 index 0000000000000000000000000000000000000000..42c5e1d041d2a44bd7c40bbbde41cf9ac4755bf7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cbmemc.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cbtable.mod b/files/grub_unbuntu22-04/x86_64-efi/cbtable.mod new file mode 100644 index 0000000000000000000000000000000000000000..e3be097bea78b473a7bde5409d88ab2d18c239fd Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cbtable.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cbtime.mod b/files/grub_unbuntu22-04/x86_64-efi/cbtime.mod new file mode 100644 index 0000000000000000000000000000000000000000..dafe387904a5baebcb4f9adfafdac80d7a3da2e7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cbtime.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/chain.mod b/files/grub_unbuntu22-04/x86_64-efi/chain.mod new file mode 100644 index 0000000000000000000000000000000000000000..3cacb85a24f9bceffc0223dc69db8fe07bbd9701 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/chain.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cmdline_cat_test.mod b/files/grub_unbuntu22-04/x86_64-efi/cmdline_cat_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..e87c4515a975c3a51bbc0b84614e727137751443 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cmdline_cat_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cmp.mod b/files/grub_unbuntu22-04/x86_64-efi/cmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..fd6c68868348a8cff523402fde0a9240e6b5c0d0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cmp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cmp_test.mod b/files/grub_unbuntu22-04/x86_64-efi/cmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..ff31e33b7ddc5e0c438881253c6d020a959f7557 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cmp_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/command.lst b/files/grub_unbuntu22-04/x86_64-efi/command.lst new file mode 100644 index 0000000000000000000000000000000000000000..ed10b5339beca8fe83571a3e31c52c6cbc6cd2d6 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/command.lst @@ -0,0 +1,194 @@ +*acpi: acpi +*all_functional_test: functional_test +*background_image: gfxterm_background +*cat: cat +*cpuid: cpuid +*crc: hashsum +*cryptomount: cryptodisk +*echo: echo +*extract_syslinux_entries_configfile: syslinuxcfg +*extract_syslinux_entries_source: syslinuxcfg +*file: file +*functional_test: functional_test +*gettext: gettext +*hashsum: hashsum +*hdparm: hdparm +*hello: hello +*help: help +*hexdump: hexdump +*inb: iorw +*inl: iorw +*inw: iorw +*keystatus: keystatus +*kfreebsd: bsd +*knetbsd: bsd +*kopenbsd: bsd +*list_env: loadenv +*load_env: loadenv +*loopback: loopback +*ls: ls +*lsacpi: lsacpi +*lspci: lspci +*md5sum: hashsum +*menuentry: normal +*pcidump: pcidump +*probe: probe +*rdmsr: rdmsr +*read_byte: memrw +*read_dword: memrw +*read_word: memrw +*regexp: regexp +*save_env: loadenv +*search: search +*serial: serial +*setpci: setpci +*sha1sum: hashsum +*sha256sum: hashsum +*sha512sum: hashsum +*sleep: sleep +*smbios: smbios +*submenu: normal +*syslinux_configfile: syslinuxcfg +*syslinux_source: syslinuxcfg +*terminfo: terminfo +*test_blockarg: test_blockarg +*testspeed: testspeed +*tr: tr +*trust: pgp +*verify_detached: pgp +*xnu_splash: xnu +*zfskey: zfscrypt +.: configfile +[: test +appleloader: appleldr +authenticate: normal +background_color: gfxterm_background +backtrace: backtrace +badram: mmap +blocklist: blocklist +boot: boot +break: normal +cat: minicmd +cbmemc: cbmemc +chainloader: chain +clear: normal +cmp: cmp +configfile: configfile +continue: normal +coreboot_boottime: cbtime +cutmem: mmap +date: date +distrust: pgp +dump: minicmd +eval: eval +exit: minicmd +export: normal +extract_entries_configfile: configfile +extract_entries_source: configfile +extract_legacy_entries_configfile: legacycfg +extract_legacy_entries_source: legacycfg +fakebios: loadbios +false: true +fix_video: fixvideo +fwsetup: efifwsetup +gptsync: gptsync +halt: halt +help: minicmd +hexdump_random: random +initrd16: linux16 +initrd: linux +initrdefi: linuxefi +keymap: keylayouts +kfreebsd_loadenv: bsd +kfreebsd_module: bsd +kfreebsd_module_elf: bsd +knetbsd_module: bsd +knetbsd_module_elf: bsd +kopenbsd_ramdisk: bsd +legacy_check_password: legacycfg +legacy_configfile: legacycfg +legacy_initrd: legacycfg +legacy_initrd_nounzip: legacycfg +legacy_kernel: legacycfg +legacy_password: legacycfg +legacy_source: legacycfg +linux16: linux16 +linux: linux +linuxefi: linuxefi +list_trusted: pgp +loadbios: loadbios +loadfont: font +lscoreboot: cbls +lsefi: lsefi +lsefimmap: lsefimmap +lsefisystab: lsefisystab +lsfonts: font +lsmmap: lsmmap +lsmod: minicmd +lssal: lssal +macppcbless: macbless +mactelbless: macbless +module2: multiboot2 +module: multiboot +multiboot2: multiboot2 +multiboot: multiboot +nativedisk: nativedisk +net_add_addr: net +net_add_dns: net +net_add_route: net +net_bootp6: net +net_bootp: net +net_del_addr: net +net_del_dns: net +net_del_route: net +net_dhcp: net +net_get_dhcp_option: net +net_ipv6_autoconf: net +net_ls_addr: net +net_ls_cards: net +net_ls_dns: net +net_ls_routes: net +net_nslookup: net +normal: normal +normal_exit: normal +outb: iorw +outl: iorw +outw: iorw +parttool: parttool +password: password +password_pbkdf2: password_pbkdf2 +play: play +read: read +reboot: reboot +return: normal +rmmod: minicmd +search.file: search_fs_file +search.fs_label: search_label +search.fs_uuid: search_fs_uuid +setparams: normal +shift: normal +source: configfile +terminal_input: terminal +terminal_output: terminal +test: test +testload: testload +time: time +true: true +usb: usbtest +videoinfo: videoinfo +videotest: videotest +write_byte: memrw +write_dword: memrw +write_word: memrw +wrmsr: wrmsr +xnu_devprop_load: xnu +xnu_kernel64: xnu +xnu_kernel: xnu +xnu_kext: xnu +xnu_kextdir: xnu +xnu_mkext: xnu +xnu_ramdisk: xnu +xnu_resume: xnu +xnu_uuid: xnu_uuid +zfs-bootfs: zfsinfo +zfsinfo: zfsinfo diff --git a/files/grub_unbuntu22-04/x86_64-efi/config.h b/files/grub_unbuntu22-04/x86_64-efi/config.h new file mode 100644 index 0000000000000000000000000000000000000000..faac41c961dafac0dac56ae59b8328695bfad2ac --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/config.h @@ -0,0 +1,69 @@ +#undef _LARGEFILE_SOURCE +#undef _FILE_OFFSET_BITS +#define _LARGEFILE_SOURCE +#define _FILE_OFFSET_BITS 64 +#if defined(__PPC__) && !defined(__powerpc__) +#define __powerpc__ 1 +#endif + +#define GCRYPT_NO_DEPRECATED 1 +#define HAVE_MEMMOVE 1 + +/* Define to 1 to enable disk cache statistics. */ +#define DISK_CACHE_STATS 0 +#define BOOT_TIME_STATS 0 +/* Define to 1 to make GRUB quieter at boot time. */ +#define QUIET_BOOT 1 + +/* We don't need those. */ +#define MINILZO_CFG_SKIP_LZO_PTR 1 +#define MINILZO_CFG_SKIP_LZO_UTIL 1 +#define MINILZO_CFG_SKIP_LZO_STRING 1 +#define MINILZO_CFG_SKIP_LZO_INIT 1 +#define MINILZO_CFG_SKIP_LZO1X_1_COMPRESS 1 +#define MINILZO_CFG_SKIP_LZO1X_DECOMPRESS 1 + +#if defined (GRUB_BUILD) +#undef ENABLE_NLS +#define BUILD_SIZEOF_LONG 8 +#define BUILD_SIZEOF_VOID_P 8 +#if defined __APPLE__ +# if defined __BIG_ENDIAN__ +# define BUILD_WORDS_BIGENDIAN 1 +# else +# define BUILD_WORDS_BIGENDIAN 0 +# endif +#else +#define BUILD_WORDS_BIGENDIAN 0 +#endif +#elif defined (GRUB_UTIL) || !defined (GRUB_MACHINE) +#include <config-util.h> +#else +#define HAVE_FONT_SOURCE 1 +/* Define if C symbols get an underscore after compilation. */ +#define HAVE_ASM_USCORE 0 +/* Define it to one of __bss_start, edata and _edata. */ +#define BSS_START_SYMBOL +/* Define it to either end or _end. */ +#define END_SYMBOL +/* Name of package. */ +#define PACKAGE "grub" +/* Version number of package. */ +#define VERSION "2.06" +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "GRUB 2.06-2ubuntu14.1" +/* Define to the version of this package. */ +#define PACKAGE_VERSION "2.06-2ubuntu14.1" +/* Define to the full name of this package. */ +#define PACKAGE_NAME "GRUB" +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "bug-grub@gnu.org" + +#define GRUB_TARGET_CPU "x86_64" +#define GRUB_PLATFORM "efi" + +#define RE_ENABLE_I18N 1 + +#define _GNU_SOURCE 1 + +#endif diff --git a/files/grub_unbuntu22-04/x86_64-efi/configfile.mod b/files/grub_unbuntu22-04/x86_64-efi/configfile.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6175b09707993504a9aa2267f1099e4616df9de Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/configfile.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cpio.mod b/files/grub_unbuntu22-04/x86_64-efi/cpio.mod new file mode 100644 index 0000000000000000000000000000000000000000..1d38949619f9f4ca577bcb07523fe9e1fa3f95a9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cpio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cpio_be.mod b/files/grub_unbuntu22-04/x86_64-efi/cpio_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..397d8f0c40c6fc0f0b083e3a401de631bfd7fd69 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cpio_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cpuid.mod b/files/grub_unbuntu22-04/x86_64-efi/cpuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..151a48695b9db1fc32f758b1871c078432d04e52 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cpuid.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/crc64.mod b/files/grub_unbuntu22-04/x86_64-efi/crc64.mod new file mode 100644 index 0000000000000000000000000000000000000000..ca9097c9d49a84ff8868555531f68c64e7c34194 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/crc64.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/crypto.lst b/files/grub_unbuntu22-04/x86_64-efi/crypto.lst new file mode 100644 index 0000000000000000000000000000000000000000..77d9efc01a4371a136c3330355aa68b0368e65c9 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/crypto.lst @@ -0,0 +1,45 @@ +RIJNDAEL: gcry_rijndael +RIJNDAEL192: gcry_rijndael +RIJNDAEL256: gcry_rijndael +AES128: gcry_rijndael +AES-128: gcry_rijndael +AES-192: gcry_rijndael +AES-256: gcry_rijndael +ADLER32: adler32 +CRC64: crc64 +ARCFOUR: gcry_arcfour +BLOWFISH: gcry_blowfish +CAMELLIA128: gcry_camellia +CAMELLIA192: gcry_camellia +CAMELLIA256: gcry_camellia +CAST5: gcry_cast5 +CRC32: gcry_crc +CRC32RFC1510: gcry_crc +CRC24RFC2440: gcry_crc +DES: gcry_des +3DES: gcry_des +DSA: gcry_dsa +IDEA: gcry_idea +MD4: gcry_md4 +MD5: gcry_md5 +RFC2268_40: gcry_rfc2268 +AES: gcry_rijndael +AES192: gcry_rijndael +AES256: gcry_rijndael +RIPEMD160: gcry_rmd160 +RSA: gcry_rsa +SEED: gcry_seed +SERPENT128: gcry_serpent +SERPENT192: gcry_serpent +SERPENT256: gcry_serpent +SHA1: gcry_sha1 +SHA224: gcry_sha256 +SHA256: gcry_sha256 +SHA512: gcry_sha512 +SHA384: gcry_sha512 +TIGER192: gcry_tiger +TIGER: gcry_tiger +TIGER2: gcry_tiger +TWOFISH: gcry_twofish +TWOFISH128: gcry_twofish +WHIRLPOOL: gcry_whirlpool diff --git a/files/grub_unbuntu22-04/x86_64-efi/crypto.mod b/files/grub_unbuntu22-04/x86_64-efi/crypto.mod new file mode 100644 index 0000000000000000000000000000000000000000..225fe82e7feede3c282a342ef7ba06dab2beaa15 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/crypto.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cryptodisk.mod b/files/grub_unbuntu22-04/x86_64-efi/cryptodisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..954646abc7dd89dad28120aec4b9e79259dc801d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cryptodisk.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/cs5536.mod b/files/grub_unbuntu22-04/x86_64-efi/cs5536.mod new file mode 100644 index 0000000000000000000000000000000000000000..f72be0a86b1808680d96fc10a194d1176246f734 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/cs5536.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ctz_test.mod b/files/grub_unbuntu22-04/x86_64-efi/ctz_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..f4da7534124b9667095458454c0b401db66e312b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ctz_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/date.mod b/files/grub_unbuntu22-04/x86_64-efi/date.mod new file mode 100644 index 0000000000000000000000000000000000000000..af741b7e1b991a45bcade5a4db52c1df7f4c0629 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/date.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/datehook.mod b/files/grub_unbuntu22-04/x86_64-efi/datehook.mod new file mode 100644 index 0000000000000000000000000000000000000000..75c8c4814c2c3d18b1979d833e3953618dc8602e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/datehook.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/datetime.mod b/files/grub_unbuntu22-04/x86_64-efi/datetime.mod new file mode 100644 index 0000000000000000000000000000000000000000..8acc782ddd0b45df336a50a0b43aa203cd253d57 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/datetime.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/disk.mod b/files/grub_unbuntu22-04/x86_64-efi/disk.mod new file mode 100644 index 0000000000000000000000000000000000000000..c820e4b29486e0e9d5a136a1577f2e2deb662829 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/disk.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/diskfilter.mod b/files/grub_unbuntu22-04/x86_64-efi/diskfilter.mod new file mode 100644 index 0000000000000000000000000000000000000000..25f7d885de5a4223912c696652965a544d1097ab Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/diskfilter.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/div.mod b/files/grub_unbuntu22-04/x86_64-efi/div.mod new file mode 100644 index 0000000000000000000000000000000000000000..0820c72085e2e33f4d526d9e83e6049c82170c7d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/div.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/div_test.mod b/files/grub_unbuntu22-04/x86_64-efi/div_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..6cfda32a82835d243d9af5f0fbb9f7241555c60f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/div_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/dm_nv.mod b/files/grub_unbuntu22-04/x86_64-efi/dm_nv.mod new file mode 100644 index 0000000000000000000000000000000000000000..e82c5176c46e7e379be7354ce29ab6b6fffbc492 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/dm_nv.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/echo.mod b/files/grub_unbuntu22-04/x86_64-efi/echo.mod new file mode 100644 index 0000000000000000000000000000000000000000..d13a25b89aea0ee28981cf82bf6e3c7339639af0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/echo.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/efi_gop.mod b/files/grub_unbuntu22-04/x86_64-efi/efi_gop.mod new file mode 100644 index 0000000000000000000000000000000000000000..065f0f0eea2efbadcacf5083aeed69648349c6eb Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/efi_gop.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/efi_uga.mod b/files/grub_unbuntu22-04/x86_64-efi/efi_uga.mod new file mode 100644 index 0000000000000000000000000000000000000000..4913434c6f116469bf7d216f1ec8c7f3f7f76ac8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/efi_uga.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/efifwsetup.mod b/files/grub_unbuntu22-04/x86_64-efi/efifwsetup.mod new file mode 100644 index 0000000000000000000000000000000000000000..4454fc2cb854f2cbcc1b4064c9498aa2c9f53159 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/efifwsetup.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/efinet.mod b/files/grub_unbuntu22-04/x86_64-efi/efinet.mod new file mode 100644 index 0000000000000000000000000000000000000000..2e7e2228921708e4b3a26fbd0d4ee3ef854c4d70 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/efinet.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ehci.mod b/files/grub_unbuntu22-04/x86_64-efi/ehci.mod new file mode 100644 index 0000000000000000000000000000000000000000..b219322d98b7bdf846a9958b5c819d1bf06408a4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ehci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/elf.mod b/files/grub_unbuntu22-04/x86_64-efi/elf.mod new file mode 100644 index 0000000000000000000000000000000000000000..e755f2a28844aeb15abd112da26c7e68bd9969e8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/elf.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/eval.mod b/files/grub_unbuntu22-04/x86_64-efi/eval.mod new file mode 100644 index 0000000000000000000000000000000000000000..b623d52323f56d611fedb4fd62008104281e42ae Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/eval.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/exfat.mod b/files/grub_unbuntu22-04/x86_64-efi/exfat.mod new file mode 100644 index 0000000000000000000000000000000000000000..8858fb08bbcac44f129c10a287bc81dca2625076 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/exfat.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/exfctest.mod b/files/grub_unbuntu22-04/x86_64-efi/exfctest.mod new file mode 100644 index 0000000000000000000000000000000000000000..cf85535499c2cca1708946232a134bbd6d645980 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/exfctest.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ext2.mod b/files/grub_unbuntu22-04/x86_64-efi/ext2.mod new file mode 100644 index 0000000000000000000000000000000000000000..be2270a41f0ad3f1ee1987590c93af8d1cf87968 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ext2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/extcmd.mod b/files/grub_unbuntu22-04/x86_64-efi/extcmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..351c38081e9bf2cd76edfee12445ded7d43c6cad Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/extcmd.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/f2fs.mod b/files/grub_unbuntu22-04/x86_64-efi/f2fs.mod new file mode 100644 index 0000000000000000000000000000000000000000..0adf02d69fea7f8a0802f6ac9168792b7943f467 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/f2fs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/fat.mod b/files/grub_unbuntu22-04/x86_64-efi/fat.mod new file mode 100644 index 0000000000000000000000000000000000000000..caab2508ae338431b7c3b86a192f80f7e2279fd9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/fat.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/fdt.lst b/files/grub_unbuntu22-04/x86_64-efi/fdt.lst new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/files/grub_unbuntu22-04/x86_64-efi/file.mod b/files/grub_unbuntu22-04/x86_64-efi/file.mod new file mode 100644 index 0000000000000000000000000000000000000000..338a8b1dbcd894c1e708bd4c96f9fe0d4f09618c Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/file.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/fixvideo.mod b/files/grub_unbuntu22-04/x86_64-efi/fixvideo.mod new file mode 100644 index 0000000000000000000000000000000000000000..64be4e6c31101a1407e26aff51d8aee9b140a551 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/fixvideo.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/font.mod b/files/grub_unbuntu22-04/x86_64-efi/font.mod new file mode 100644 index 0000000000000000000000000000000000000000..761ebf48eae7900f8699d0380b41785b34fe7736 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/font.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/fs.lst b/files/grub_unbuntu22-04/x86_64-efi/fs.lst new file mode 100644 index 0000000000000000000000000000000000000000..0acd240b130a371f88b5a5d5415d9eaea6dc3557 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/fs.lst @@ -0,0 +1,37 @@ +affs +afs +bfs +btrfs +cbfs +cpio +cpio_be +exfat +ext2 +f2fs +fat +hfs +hfsplus +iso9660 +jfs +minix +minix2 +minix2_be +minix3 +minix3_be +minix_be +newc +nilfs2 +ntfs +odc +procfs +reiserfs +romfs +sfs +squash4 +tar +udf +ufs1 +ufs1_be +ufs2 +xfs +zfs diff --git a/files/grub_unbuntu22-04/x86_64-efi/fshelp.mod b/files/grub_unbuntu22-04/x86_64-efi/fshelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..fabb6e2b3c393a3884de8ff1b422f2b051490d65 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/fshelp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/functional_test.mod b/files/grub_unbuntu22-04/x86_64-efi/functional_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..3c66c6e8bb3bb098eb02be1e2c3c1fcc35b44adf Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/functional_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_arcfour.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_arcfour.mod new file mode 100644 index 0000000000000000000000000000000000000000..f3762df4324ade658fedc8071f4de4a57224288d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_arcfour.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_blowfish.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_blowfish.mod new file mode 100644 index 0000000000000000000000000000000000000000..f4e890a209d6719de31b2014e6987040e76a2633 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_blowfish.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_camellia.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_camellia.mod new file mode 100644 index 0000000000000000000000000000000000000000..36aa513d53b8d7586daaf668a84dcb12fa7ee606 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_camellia.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_cast5.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_cast5.mod new file mode 100644 index 0000000000000000000000000000000000000000..e944be0861caf1b3478f7b1abfead13ebaf4cabe Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_cast5.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_crc.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_crc.mod new file mode 100644 index 0000000000000000000000000000000000000000..04a9fe7056216b9ee7f8f872d276a110e6e07f7a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_crc.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_des.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_des.mod new file mode 100644 index 0000000000000000000000000000000000000000..90d3a3a607113c834f16dfb2ecaa5e282475f5d7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_des.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_dsa.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_dsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..8d42e6cc46a4bac01de343fe3939b493da864cf1 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_dsa.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_idea.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_idea.mod new file mode 100644 index 0000000000000000000000000000000000000000..97ca6e5c8f9b07698a14919c78e6214f3c233884 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_idea.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_md4.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_md4.mod new file mode 100644 index 0000000000000000000000000000000000000000..a13fcad5cc2d7d32b7522b80ebbd8e173bb14f7f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_md4.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_md5.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_md5.mod new file mode 100644 index 0000000000000000000000000000000000000000..11abfd2492f9a1088d8b54c10d982a6956967e4b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_md5.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_rfc2268.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_rfc2268.mod new file mode 100644 index 0000000000000000000000000000000000000000..121c7695b0a91037bf5ddf45acfde421322cf07e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_rfc2268.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_rijndael.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_rijndael.mod new file mode 100644 index 0000000000000000000000000000000000000000..67d8534a9f6527d83870f724c85528fe3dc04d72 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_rijndael.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_rmd160.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_rmd160.mod new file mode 100644 index 0000000000000000000000000000000000000000..7275874febc275bb4529c13990443bc50ed67f86 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_rmd160.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_rsa.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_rsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..73addace9f91f3975041fefa0f5c029d24273395 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_rsa.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_seed.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_seed.mod new file mode 100644 index 0000000000000000000000000000000000000000..95fe36b99dafe80d039f84c5b2ad3ff558de6a96 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_seed.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_serpent.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_serpent.mod new file mode 100644 index 0000000000000000000000000000000000000000..b25fa75135853dcee2d40a38000879f087de4c33 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_serpent.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_sha1.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha1.mod new file mode 100644 index 0000000000000000000000000000000000000000..f78575122105738e1836a76df10d2fb7c6948008 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha1.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_sha256.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha256.mod new file mode 100644 index 0000000000000000000000000000000000000000..3734472bef35fdfc3281e1015ee38c9cbf59ce53 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha256.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_sha512.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha512.mod new file mode 100644 index 0000000000000000000000000000000000000000..eb8e5e177f1de035e8f6a9a0af69260260ae978d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_sha512.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_tiger.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_tiger.mod new file mode 100644 index 0000000000000000000000000000000000000000..5bb8263cc3c84793c59d7d4189385a9169cf3cfb Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_tiger.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_twofish.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_twofish.mod new file mode 100644 index 0000000000000000000000000000000000000000..6c33013ea344b236121833dffe9331d97758f0a6 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_twofish.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gcry_whirlpool.mod b/files/grub_unbuntu22-04/x86_64-efi/gcry_whirlpool.mod new file mode 100644 index 0000000000000000000000000000000000000000..900d7f9bec04cdff3998f62375b2a33b76d40feb Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gcry_whirlpool.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/geli.mod b/files/grub_unbuntu22-04/x86_64-efi/geli.mod new file mode 100644 index 0000000000000000000000000000000000000000..b368051b14262c4f1e800990a912a3bce836e1d9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/geli.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gettext.mod b/files/grub_unbuntu22-04/x86_64-efi/gettext.mod new file mode 100644 index 0000000000000000000000000000000000000000..a8846d52e9e6dc0c6191de2b2fcaea0332e49214 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gettext.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gfxmenu.mod b/files/grub_unbuntu22-04/x86_64-efi/gfxmenu.mod new file mode 100644 index 0000000000000000000000000000000000000000..d03004c098510594cd2ad970210dd30796d1d657 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gfxmenu.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gfxterm.mod b/files/grub_unbuntu22-04/x86_64-efi/gfxterm.mod new file mode 100644 index 0000000000000000000000000000000000000000..3c7a32991abd716329b000755e7b3c60fca102ed Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gfxterm.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gfxterm_background.mod b/files/grub_unbuntu22-04/x86_64-efi/gfxterm_background.mod new file mode 100644 index 0000000000000000000000000000000000000000..3621fb734b80707788f4ceaa16d4c6e19780e9f4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gfxterm_background.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gfxterm_menu.mod b/files/grub_unbuntu22-04/x86_64-efi/gfxterm_menu.mod new file mode 100644 index 0000000000000000000000000000000000000000..24640ce067e3c5a16a344a8d63150d60768e9075 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gfxterm_menu.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gptsync.mod b/files/grub_unbuntu22-04/x86_64-efi/gptsync.mod new file mode 100644 index 0000000000000000000000000000000000000000..df081bafdc7db26a16c2fffeeaa66e46a0174df4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gptsync.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/gzio.mod b/files/grub_unbuntu22-04/x86_64-efi/gzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..139d8bac57a4f05a80587917ed0d969ca4e3279c Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/gzio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/halt.mod b/files/grub_unbuntu22-04/x86_64-efi/halt.mod new file mode 100644 index 0000000000000000000000000000000000000000..9e4485223169cf6877c3c6205941fbc742541d34 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/halt.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hashsum.mod b/files/grub_unbuntu22-04/x86_64-efi/hashsum.mod new file mode 100644 index 0000000000000000000000000000000000000000..afa36d1b284a45501816677a3bc9dbb229ea633f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hashsum.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hdparm.mod b/files/grub_unbuntu22-04/x86_64-efi/hdparm.mod new file mode 100644 index 0000000000000000000000000000000000000000..f81ad845a7cae8627927c46dac4818d513b09ce1 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hdparm.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hello.mod b/files/grub_unbuntu22-04/x86_64-efi/hello.mod new file mode 100644 index 0000000000000000000000000000000000000000..b87ca480a05892ee18f81282d79d8c9fd01d6ef4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hello.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/help.mod b/files/grub_unbuntu22-04/x86_64-efi/help.mod new file mode 100644 index 0000000000000000000000000000000000000000..27e8ce8bc68478ef393127ab7d6edfb8313533f4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/help.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hexdump.mod b/files/grub_unbuntu22-04/x86_64-efi/hexdump.mod new file mode 100644 index 0000000000000000000000000000000000000000..f723ac0638045baba98543a39fab3fea251ad503 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hexdump.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hfs.mod b/files/grub_unbuntu22-04/x86_64-efi/hfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..e2c70f53a3ac3f1bed4f1cdb08d85229110200f3 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hfsplus.mod b/files/grub_unbuntu22-04/x86_64-efi/hfsplus.mod new file mode 100644 index 0000000000000000000000000000000000000000..c9e2d0e49834c6fbdb616e9b36970d650bcd7013 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hfsplus.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/hfspluscomp.mod b/files/grub_unbuntu22-04/x86_64-efi/hfspluscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..378f8921ddad3173d97241e6b64a83a3eec7b821 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/hfspluscomp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/http.mod b/files/grub_unbuntu22-04/x86_64-efi/http.mod new file mode 100644 index 0000000000000000000000000000000000000000..a17444dc86a0bed3455d0fc1ffc09f93c471c6b0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/http.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/iorw.mod b/files/grub_unbuntu22-04/x86_64-efi/iorw.mod new file mode 100644 index 0000000000000000000000000000000000000000..56093d4bd6b9463885db9eb54565ab539cfaa25a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/iorw.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/iso9660.mod b/files/grub_unbuntu22-04/x86_64-efi/iso9660.mod new file mode 100644 index 0000000000000000000000000000000000000000..5a1fe798292f357ef2edd58d7827eb10a2349fb5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/iso9660.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/jfs.mod b/files/grub_unbuntu22-04/x86_64-efi/jfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..780d2a82e4cc129203ac1dbb1e7741444438904d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/jfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/jpeg.mod b/files/grub_unbuntu22-04/x86_64-efi/jpeg.mod new file mode 100644 index 0000000000000000000000000000000000000000..8fc8ac0715132a153ebb874d7dc1a5a85782408a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/jpeg.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/json.mod b/files/grub_unbuntu22-04/x86_64-efi/json.mod new file mode 100644 index 0000000000000000000000000000000000000000..f53e4f2adcb1506062183af2470d92efd8f5f829 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/json.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/kernel.img b/files/grub_unbuntu22-04/x86_64-efi/kernel.img new file mode 100644 index 0000000000000000000000000000000000000000..36dadb49d0bb776bb2cf1925dbf1df5e60b432f7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/kernel.img differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/keylayouts.mod b/files/grub_unbuntu22-04/x86_64-efi/keylayouts.mod new file mode 100644 index 0000000000000000000000000000000000000000..7173da21acade8416b0b1df9182f6c66434bc752 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/keylayouts.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/keystatus.mod b/files/grub_unbuntu22-04/x86_64-efi/keystatus.mod new file mode 100644 index 0000000000000000000000000000000000000000..027596a813e36ca77c03d3cb10519606d526a108 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/keystatus.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ldm.mod b/files/grub_unbuntu22-04/x86_64-efi/ldm.mod new file mode 100644 index 0000000000000000000000000000000000000000..9cb4cfbd54503e6b138eb6b0d01f9484afd0d695 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ldm.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/legacy_password_test.mod b/files/grub_unbuntu22-04/x86_64-efi/legacy_password_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..38a2a99d3a2d7b62ba9fa62207fe2fc7a61752da Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/legacy_password_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/legacycfg.mod b/files/grub_unbuntu22-04/x86_64-efi/legacycfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..ccf2ac53d83d87f541ec5a65b2def6c119731b59 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/legacycfg.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/linux.mod b/files/grub_unbuntu22-04/x86_64-efi/linux.mod new file mode 100644 index 0000000000000000000000000000000000000000..766f851ee972c470072c63c885605a787db0fe56 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/linux.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/linux16.mod b/files/grub_unbuntu22-04/x86_64-efi/linux16.mod new file mode 100644 index 0000000000000000000000000000000000000000..ac44df12eabb841bb2cdd105baaa876e96d495ab Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/linux16.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/linuxefi.mod b/files/grub_unbuntu22-04/x86_64-efi/linuxefi.mod new file mode 100644 index 0000000000000000000000000000000000000000..888875ef961ef496755299c710758ff0ded4e19d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/linuxefi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/loadbios.mod b/files/grub_unbuntu22-04/x86_64-efi/loadbios.mod new file mode 100644 index 0000000000000000000000000000000000000000..e76b862c349aebd57ec074c480e245af46db82e9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/loadbios.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/loadenv.mod b/files/grub_unbuntu22-04/x86_64-efi/loadenv.mod new file mode 100644 index 0000000000000000000000000000000000000000..0896ed3ca3188c5e0b874c445afcd34e84a11e53 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/loadenv.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/loopback.mod b/files/grub_unbuntu22-04/x86_64-efi/loopback.mod new file mode 100644 index 0000000000000000000000000000000000000000..06d10d501ac338ca2228cd129ad2c98442a98ff0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/loopback.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ls.mod b/files/grub_unbuntu22-04/x86_64-efi/ls.mod new file mode 100644 index 0000000000000000000000000000000000000000..841b770a773e8e1bd69d53640928172fb76b65c7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ls.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lsacpi.mod b/files/grub_unbuntu22-04/x86_64-efi/lsacpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..f75c15c3b2817995b48c6e684bb76052fca0517d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lsacpi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lsefi.mod b/files/grub_unbuntu22-04/x86_64-efi/lsefi.mod new file mode 100644 index 0000000000000000000000000000000000000000..03eaf74a7dbab040aebf02513f0184a3307b3343 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lsefi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lsefimmap.mod b/files/grub_unbuntu22-04/x86_64-efi/lsefimmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..ed1a9f8d68f2f55e6bdd20178a680be8347500b5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lsefimmap.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lsefisystab.mod b/files/grub_unbuntu22-04/x86_64-efi/lsefisystab.mod new file mode 100644 index 0000000000000000000000000000000000000000..d0ec33e4b0c6ecb0c51d553d4a6f6eb10edd1426 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lsefisystab.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lsmmap.mod b/files/grub_unbuntu22-04/x86_64-efi/lsmmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..9d50a3ab3d85f06cc6b8f47e75e8f4d12a76ad54 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lsmmap.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lspci.mod b/files/grub_unbuntu22-04/x86_64-efi/lspci.mod new file mode 100644 index 0000000000000000000000000000000000000000..d28583a5a7fea5df6fa3b78496ace5ef5c17dc3b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lspci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lssal.mod b/files/grub_unbuntu22-04/x86_64-efi/lssal.mod new file mode 100644 index 0000000000000000000000000000000000000000..9f1ef7aa4738372ff10069166c96f298c8a8e1da Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lssal.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/luks.mod b/files/grub_unbuntu22-04/x86_64-efi/luks.mod new file mode 100644 index 0000000000000000000000000000000000000000..627c960776eb27eb5b5f202b38191e6c7713ca5e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/luks.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/luks2.mod b/files/grub_unbuntu22-04/x86_64-efi/luks2.mod new file mode 100644 index 0000000000000000000000000000000000000000..6e77e14bb13bf0a23bcd93faabf6be4b73f1f70e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/luks2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lvm.mod b/files/grub_unbuntu22-04/x86_64-efi/lvm.mod new file mode 100644 index 0000000000000000000000000000000000000000..467f5407f84f3b044af57a2be914ec95620a2a18 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lvm.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/lzopio.mod b/files/grub_unbuntu22-04/x86_64-efi/lzopio.mod new file mode 100644 index 0000000000000000000000000000000000000000..a122eb16d1f572f9295084be803097b6574e296f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/lzopio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/macbless.mod b/files/grub_unbuntu22-04/x86_64-efi/macbless.mod new file mode 100644 index 0000000000000000000000000000000000000000..b01e08e5aea4717e21668e8b17d8c396e610a515 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/macbless.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/macho.mod b/files/grub_unbuntu22-04/x86_64-efi/macho.mod new file mode 100644 index 0000000000000000000000000000000000000000..8b7785ea0192a99158f1439bb7ae9a05da62fda0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/macho.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mdraid09.mod b/files/grub_unbuntu22-04/x86_64-efi/mdraid09.mod new file mode 100644 index 0000000000000000000000000000000000000000..32b65045ea69629b0e207bfffe44490a1d1d58be Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mdraid09.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mdraid09_be.mod b/files/grub_unbuntu22-04/x86_64-efi/mdraid09_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..2e82df8d559f887bda6b60073564f152f0ed01b2 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mdraid09_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mdraid1x.mod b/files/grub_unbuntu22-04/x86_64-efi/mdraid1x.mod new file mode 100644 index 0000000000000000000000000000000000000000..0cf13c08fc8264ba6f88c6e72c7615e57108967d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mdraid1x.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/memdisk.mod b/files/grub_unbuntu22-04/x86_64-efi/memdisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..753ced2e403d112a28aa3afae7f4857d2044b9ef Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/memdisk.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/memrw.mod b/files/grub_unbuntu22-04/x86_64-efi/memrw.mod new file mode 100644 index 0000000000000000000000000000000000000000..a999a2c545dac53a0bf1209f4847508e4daef338 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/memrw.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minicmd.mod b/files/grub_unbuntu22-04/x86_64-efi/minicmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..c082b240c08674af7806d6e384a5228061df8b23 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minicmd.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix.mod b/files/grub_unbuntu22-04/x86_64-efi/minix.mod new file mode 100644 index 0000000000000000000000000000000000000000..4ab91cb28621f5499065343b5735f1a4a8a6bc89 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix2.mod b/files/grub_unbuntu22-04/x86_64-efi/minix2.mod new file mode 100644 index 0000000000000000000000000000000000000000..69e33d56e9e8fc42fc66c5aaf2f8dd914aec8ad5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix2_be.mod b/files/grub_unbuntu22-04/x86_64-efi/minix2_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..2c85e95e916cf5e78a6e9e3207f89a871caa041e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix2_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix3.mod b/files/grub_unbuntu22-04/x86_64-efi/minix3.mod new file mode 100644 index 0000000000000000000000000000000000000000..b01461a683d7628ee91f705c5f32e6f60e191f1f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix3.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix3_be.mod b/files/grub_unbuntu22-04/x86_64-efi/minix3_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..212d364ba1bbdbd5f6bd26710c2ee0d94d64d57b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix3_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/minix_be.mod b/files/grub_unbuntu22-04/x86_64-efi/minix_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..def806e037ac7b651912fc2017da8e1f9aec81fa Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/minix_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mmap.mod b/files/grub_unbuntu22-04/x86_64-efi/mmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..cc7c5f34a9a5af65c5becfd13e548e36c52ee8b2 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mmap.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/moddep.lst b/files/grub_unbuntu22-04/x86_64-efi/moddep.lst new file mode 100644 index 0000000000000000000000000000000000000000..461a449ce5babc3a7f29b4e5f6645ff3eb33ee84 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/moddep.lst @@ -0,0 +1,267 @@ +xfs: fshelp +fshelp: +videotest_checksum: video_fb font functional_test +relocator: mmap +procfs: archelp +offsetio: +lsefisystab: +loadbios: +gcry_seed: crypto +ufs2: +tr: extcmd +lsacpi: extcmd acpi +json: +gfxterm_background: extcmd gfxterm bitmap video video_colors bitmap_scale +file: offsetio extcmd elf macho +xnu_uuid: gcry_md5 +part_sunpc: +extcmd: +echo: extcmd +btrfs: gzio lzopio raid6rec zstd +read: +priority_queue: +lsefimmap: +gcry_dsa: mpi pgp +ctz_test: functional_test +cbls: cbtable +zfs: gzio +progress: normal +minix: +setjmp: +macbless: disk +hfspluscomp: gzio hfsplus +gcry_rsa: mpi pgp +cat: extcmd +videotest: font video gfxmenu +sleep: extcmd normal +reiserfs: fshelp +lspci: extcmd +div: +video_cirrus: video_fb video +testload: +search_fs_uuid: +part_dvh: +gcry_md5: crypto +gcry_arcfour: crypto +ufs1_be: +part_acorn: +iorw: extcmd +gfxterm: font video +cpio_be: archelp +scsi: +memdisk: +fixvideo: +crc64: crypto +ata: scsi +tpm: +multiboot2: relocator boot net acpi linux video mmap +gcry_idea: crypto +cpuid: extcmd +cmp_test: functional_test +video_fb: +sfs: fshelp +zfscrypt: extcmd zfs crypto pbkdf2 gcry_rijndael gcry_sha1 +video_bochs: video_fb video +udf: fshelp +datehook: datetime +adler32: crypto +setjmp_test: setjmp functional_test +ntfscomp: ntfs +nativedisk: +eval: normal +videoinfo: video +pbkdf2: crypto +password_pbkdf2: crypto pbkdf2 normal gcry_sha512 +font: bufio video +datetime: +crypto: +strtoull_test: functional_test +pcidump: extcmd +mdraid09_be: diskfilter +afsplitter: crypto +normal: extcmd datetime crypto boot net bufio gettext terminal +tftp: net +gcry_whirlpool: crypto +fat: fshelp +setpci: extcmd +boot: +ufs1: +cpio: archelp +chain: boot net efinet +cbmemc: normal terminfo cbtable +tga: bufio bitmap +spkmodem: terminfo +odc: archelp +usbserial_pl2303: usb serial usbserial_common +regexp: extcmd normal +password: crypto normal +ntfs: fshelp +net: priority_queue datetime boot bufio +loadenv: extcmd disk +gzio: gcry_crc +ehci: boot cs5536 usb +archelp: +kernel: +usbtest: usb +linuxefi: boot linux +gptsync: disk +date: datetime +xnu: relocator extcmd boot random bitmap video mmap bitmap_scale macho +mul_test: functional_test +bufio: +acpi: extcmd mmap +png: bufio bitmap +minix2: +cs5536: +linux: relocator boot video mmap +gcry_des: crypto +gcry_blowfish: crypto +part_plan: +part_bsd: part_msdos +lvm: diskfilter +lsefi: +gcry_tiger: crypto +blocklist: +xzio: crypto +usb_keyboard: usb keylayouts +nilfs2: fshelp +lsmmap: mmap +gcry_cast5: crypto +backtrace: +appleldr: boot +testspeed: extcmd normal +squash4: fshelp gzio xzio lzopio +msdospart: disk parttool +lzopio: crypto +gfxterm_menu: procfs video_fb font normal functional_test +gcry_sha256: crypto +usb: +pata: ata +affs: fshelp +syslinuxcfg: extcmd normal +random: hexdump +part_amiga: +play: +part_apple: +mpi: crypto +keylayouts: +jpeg: bufio bitmap +gcry_rmd160: crypto +efifwsetup: +cbfs: archelp +time: +lssal: +loopback: extcmd +disk: +at_keyboard: boot keylayouts +true: +test: +part_sun: +part_msdos: +morse: +http: net +part_gpt: +luks2: json crypto pbkdf2 afsplitter cryptodisk +elf: +diskfilter: +bitmap: +cmp: +uhci: usb +ls: extcmd datetime normal +search: extcmd search_fs_uuid search_fs_file search_label +raid6rec: diskfilter +minix3_be: +memrw: extcmd +cbtime: cbtable +zstd: +raid5rec: diskfilter +rdmsr: extcmd +hello: extcmd +video: +shift_test: functional_test +minix2_be: +hashsum: extcmd crypto normal +video_colors: +mdraid1x: diskfilter +gcry_twofish: crypto +gcry_sha512: crypto +cryptodisk: procfs extcmd crypto +parttool: normal +ohci: boot cs5536 usb +mmap: +minix3: +gfxmenu: gfxterm font normal bitmap video video_colors bitmap_scale trig +dm_nv: diskfilter +search_fs_file: +luks: crypto pbkdf2 afsplitter cryptodisk +ldm: part_msdos part_gpt diskfilter +hfsplus: fshelp +hfs: fshelp +hexdump: extcmd +gettext: +gcry_rijndael: crypto +aout: +terminal: +probe: extcmd +functional_test: extcmd btrfs video_fb video +minicmd: +geli: crypto pbkdf2 gcry_sha256 cryptodisk gcry_sha512 +gcry_rfc2268: crypto +f2fs: fshelp +ext2: fshelp +bsd: relocator extcmd gcry_md5 cpuid crypto boot elf video mmap aout serial +terminfo: extcmd +legacy_password_test: functional_test legacycfg +gcry_crc: crypto +gcry_camellia: crypto +bitmap_scale: bitmap +part_dfly: +efinet: net +cbtable: +usbms: scsi usb +sleep_test: datetime functional_test +div_test: div functional_test +zfsinfo: zfs +wrmsr: +newc: archelp +multiboot: relocator boot net linux video mmap +linux16: relocator boot linux video mmap +keystatus: extcmd +jfs: +gcry_md4: crypto +mdraid09: diskfilter +iso9660: fshelp +cmdline_cat_test: procfs video_fb font normal functional_test +bswap_test: functional_test +afs: fshelp +search_label: +reboot: +pgp: extcmd crypto mpi gcry_sha1 +efi_gop: video_fb video +xnu_uuid_test: functional_test +test_blockarg: extcmd normal +serial: extcmd terminfo +configfile: normal +romfs: fshelp +minix_be: +help: extcmd normal +halt: acpi +gcry_sha1: crypto +usbserial_usbdebug: usb serial usbserial_common +usbserial_ftdi: usb serial usbserial_common +hdparm: extcmd hexdump +trig: +tar: archelp +legacycfg: gcry_md5 crypto normal password +ahci: ata boot +pbkdf2_test: pbkdf2 functional_test gcry_sha1 +macho: +efi_uga: video_fb video +smbios: extcmd +signature_test: procfs functional_test +gcry_serpent: crypto +bfs: fshelp +usbserial_common: usb serial +exfctest: functional_test +exfat: fshelp +all_video: efi_gop efi_uga video_bochs video_cirrus diff --git a/files/grub_unbuntu22-04/x86_64-efi/modinfo.sh b/files/grub_unbuntu22-04/x86_64-efi/modinfo.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c64a261bb6bf95b8a59ee56d1990e74dfbf5398 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/modinfo.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# User-controllable options +grub_modinfo_target_cpu=x86_64 +grub_modinfo_platform=efi +grub_disk_cache_stats=0 +grub_boot_time_stats=0 +grub_have_font_source=1 + +# Autodetected config +grub_have_asm_uscore=0 +grub_bss_start_symbol="" +grub_end_symbol="" + +# Build environment +grub_target_cc='gcc-10' +grub_target_cc_version='gcc-10 (Ubuntu 10.4.0-5ubuntu2) 10.4.0' +grub_target_cflags='-std=gnu99 -Os -m64 -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2 -freg-struct-return -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow -msoft-float -fno-dwarf2-cfi-asm -mno-stack-arg-probe -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-ident -mcmodel=large -mno-red-zone -fno-PIE -fno-pie -fno-stack-protector -Wtrampolines -Werror' +grub_target_cppflags='-Wno-unused-but-set-variable -Wall -W -DGRUB_MACHINE_EFI=1 -DGRUB_MACHINE=X86_64_EFI -m64 -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/10/include -I$(top_srcdir)/include -I$(top_builddir)/include' +grub_target_ccasflags=' -m64 -g -msoft-float -fno-PIE -fno-pie' +grub_target_ldflags='-no-pie -m64 -Wl,-melf_x86_64 -no-pie -Wl,--build-id=none' +grub_cflags='' +grub_cppflags=' -D_FILE_OFFSET_BITS=64' +grub_ccasflags='' +grub_ldflags='' +grub_target_strip='strip' +grub_target_nm='nm' +grub_target_ranlib='ranlib' +grub_target_objconf='' +grub_target_obj2elf='' +grub_target_img_base_ldopt='-Wl,-Ttext' +grub_target_img_ldflags='@TARGET_IMG_BASE_LDFLAGS@' + +# Version +grub_version="2.06" +grub_package="grub" +grub_package_string="GRUB 2.06-2ubuntu14.1" +grub_package_version="2.06-2ubuntu14.1" +grub_package_name="GRUB" +grub_package_bugreport="bug-grub@gnu.org" diff --git a/files/grub_unbuntu22-04/x86_64-efi/monolithic/gcdx64.efi b/files/grub_unbuntu22-04/x86_64-efi/monolithic/gcdx64.efi new file mode 100644 index 0000000000000000000000000000000000000000..2604db1456b77b8efd94dd4e0ba1488bd02f6d40 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/monolithic/gcdx64.efi differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubnetx64.efi b/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubnetx64.efi new file mode 100644 index 0000000000000000000000000000000000000000..592e718346b21734b05ea0c194966e4ccb45fce9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubnetx64.efi differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubx64.efi b/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubx64.efi new file mode 100644 index 0000000000000000000000000000000000000000..5090a886ed6c76dc1540c6049f516ddd9226befa Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/monolithic/grubx64.efi differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/morse.mod b/files/grub_unbuntu22-04/x86_64-efi/morse.mod new file mode 100644 index 0000000000000000000000000000000000000000..a9927750538de11d9ec6f1bea06237b8f9ee15e0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/morse.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mpi.mod b/files/grub_unbuntu22-04/x86_64-efi/mpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..e122ac8742cdbb0cc9247311e46d1655f3a360bc Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mpi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/msdospart.mod b/files/grub_unbuntu22-04/x86_64-efi/msdospart.mod new file mode 100644 index 0000000000000000000000000000000000000000..db8f1e51e01f920116968e896af5cc1ba126dc3e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/msdospart.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/mul_test.mod b/files/grub_unbuntu22-04/x86_64-efi/mul_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..75f7294a048ce482cc50b9df8d5cfd19ca9a2590 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/mul_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/multiboot.mod b/files/grub_unbuntu22-04/x86_64-efi/multiboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..a426ca8e4fe8f704a8e90147b2cf2122e3f84a94 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/multiboot.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/multiboot2.mod b/files/grub_unbuntu22-04/x86_64-efi/multiboot2.mod new file mode 100644 index 0000000000000000000000000000000000000000..de8c68005f4a378febf54487c62ea16dd3bc3e81 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/multiboot2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/nativedisk.mod b/files/grub_unbuntu22-04/x86_64-efi/nativedisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..51337f3aaad99c6b1a8403cec597939cac3bb263 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/nativedisk.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/net.mod b/files/grub_unbuntu22-04/x86_64-efi/net.mod new file mode 100644 index 0000000000000000000000000000000000000000..5061aa06c94603756b5c5660dd422d4e95c08792 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/net.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/newc.mod b/files/grub_unbuntu22-04/x86_64-efi/newc.mod new file mode 100644 index 0000000000000000000000000000000000000000..ec5e0d231d0c2798aae1e179ac189dd334dc2350 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/newc.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/nilfs2.mod b/files/grub_unbuntu22-04/x86_64-efi/nilfs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..5c8a64977708fb898fc73fa3aa418d8be728c9b0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/nilfs2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/normal.mod b/files/grub_unbuntu22-04/x86_64-efi/normal.mod new file mode 100644 index 0000000000000000000000000000000000000000..c36b3eee80280603c352fb23c28ee0d3a959d0b8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/normal.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ntfs.mod b/files/grub_unbuntu22-04/x86_64-efi/ntfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..59721664afb359908612b01237f18d4bff9700ee Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ntfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ntfscomp.mod b/files/grub_unbuntu22-04/x86_64-efi/ntfscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..9ab5eeed5b9d381cc1dee59143fc0355b65e09b2 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ntfscomp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/odc.mod b/files/grub_unbuntu22-04/x86_64-efi/odc.mod new file mode 100644 index 0000000000000000000000000000000000000000..97d94fdf011a008ca97426ee8957cdc879d5d51f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/odc.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/offsetio.mod b/files/grub_unbuntu22-04/x86_64-efi/offsetio.mod new file mode 100644 index 0000000000000000000000000000000000000000..4bbeb157ef8643d83a783c3983d7260cef119a0f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/offsetio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ohci.mod b/files/grub_unbuntu22-04/x86_64-efi/ohci.mod new file mode 100644 index 0000000000000000000000000000000000000000..ca38804fa52c6002aed38cdfa0bc20852ae2cc2a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ohci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_acorn.mod b/files/grub_unbuntu22-04/x86_64-efi/part_acorn.mod new file mode 100644 index 0000000000000000000000000000000000000000..f567cf821679a39ae158d744cd7a06974da4626b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_acorn.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_amiga.mod b/files/grub_unbuntu22-04/x86_64-efi/part_amiga.mod new file mode 100644 index 0000000000000000000000000000000000000000..c05f06d1791364fc539ee7d892e9a7174f90d328 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_amiga.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_apple.mod b/files/grub_unbuntu22-04/x86_64-efi/part_apple.mod new file mode 100644 index 0000000000000000000000000000000000000000..07d10d51f76f91c62f96ba19204a664a0f693a81 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_apple.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_bsd.mod b/files/grub_unbuntu22-04/x86_64-efi/part_bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..d63c75a6350e82480e59cd3b584c6711c40d43b5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_bsd.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_dfly.mod b/files/grub_unbuntu22-04/x86_64-efi/part_dfly.mod new file mode 100644 index 0000000000000000000000000000000000000000..c4df1842b30a2cb8bcc6104abf293b069d6a02c1 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_dfly.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_dvh.mod b/files/grub_unbuntu22-04/x86_64-efi/part_dvh.mod new file mode 100644 index 0000000000000000000000000000000000000000..48b08e6e4caf116f38918c44fd0dd4c42657af8b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_dvh.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_gpt.mod b/files/grub_unbuntu22-04/x86_64-efi/part_gpt.mod new file mode 100644 index 0000000000000000000000000000000000000000..2fe5b50a408a887d947bfadd54be50488fb69b99 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_gpt.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_msdos.mod b/files/grub_unbuntu22-04/x86_64-efi/part_msdos.mod new file mode 100644 index 0000000000000000000000000000000000000000..2695501605e231da55087fbe8f3c3b6d547b83af Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_msdos.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_plan.mod b/files/grub_unbuntu22-04/x86_64-efi/part_plan.mod new file mode 100644 index 0000000000000000000000000000000000000000..9e1b84e5e468f573cb3a186a3d1e89836e6eeef7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_plan.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_sun.mod b/files/grub_unbuntu22-04/x86_64-efi/part_sun.mod new file mode 100644 index 0000000000000000000000000000000000000000..32f11d79595bd54f3a364f97b7d05b2945d2664d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_sun.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/part_sunpc.mod b/files/grub_unbuntu22-04/x86_64-efi/part_sunpc.mod new file mode 100644 index 0000000000000000000000000000000000000000..a8b306ab54f2962aa382a333255b68e58aec2733 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/part_sunpc.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/partmap.lst b/files/grub_unbuntu22-04/x86_64-efi/partmap.lst new file mode 100644 index 0000000000000000000000000000000000000000..761233aa26765d4bb746b00ff5a1715158c5a07e --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/partmap.lst @@ -0,0 +1,11 @@ +part_acorn +part_amiga +part_apple +part_bsd +part_dfly +part_dvh +part_gpt +part_msdos +part_plan +part_sun +part_sunpc diff --git a/files/grub_unbuntu22-04/x86_64-efi/parttool.lst b/files/grub_unbuntu22-04/x86_64-efi/parttool.lst new file mode 100644 index 0000000000000000000000000000000000000000..68b4b5c453c586af96c276e4f9d7620a3bc39e0f --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/parttool.lst @@ -0,0 +1 @@ +msdos: msdospart diff --git a/files/grub_unbuntu22-04/x86_64-efi/parttool.mod b/files/grub_unbuntu22-04/x86_64-efi/parttool.mod new file mode 100644 index 0000000000000000000000000000000000000000..5614f7e526790bc9ec9c11feea72d0228b6f6981 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/parttool.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/password.mod b/files/grub_unbuntu22-04/x86_64-efi/password.mod new file mode 100644 index 0000000000000000000000000000000000000000..606399d7c71b57e561f445dea93a871834432434 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/password.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/password_pbkdf2.mod b/files/grub_unbuntu22-04/x86_64-efi/password_pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..714ad2e60b07b0a871f7ac25dcad51715035b9a9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/password_pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/pata.mod b/files/grub_unbuntu22-04/x86_64-efi/pata.mod new file mode 100644 index 0000000000000000000000000000000000000000..aabb57dbd1b356f94aa1ed46e5733f64edf6646c Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/pata.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/pbkdf2.mod b/files/grub_unbuntu22-04/x86_64-efi/pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..28a4fb484ecacb2833ca3d58cc6ccacf467c574d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/pbkdf2_test.mod b/files/grub_unbuntu22-04/x86_64-efi/pbkdf2_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..1ca8ac1f322a623f7776f8513ce9b5af8a434004 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/pbkdf2_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/pcidump.mod b/files/grub_unbuntu22-04/x86_64-efi/pcidump.mod new file mode 100644 index 0000000000000000000000000000000000000000..a304a80d69c30650542946028e99c1f96cd3f4f4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/pcidump.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/pgp.mod b/files/grub_unbuntu22-04/x86_64-efi/pgp.mod new file mode 100644 index 0000000000000000000000000000000000000000..0733a1be21f0fb4e6026ef9755a743759687df64 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/pgp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/play.mod b/files/grub_unbuntu22-04/x86_64-efi/play.mod new file mode 100644 index 0000000000000000000000000000000000000000..7a2fede53f8307bdff46d14e4e792d2a2f2d82f0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/play.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/png.mod b/files/grub_unbuntu22-04/x86_64-efi/png.mod new file mode 100644 index 0000000000000000000000000000000000000000..3a20b798542ac673984e06acf5a5cfc2ceaf600f Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/png.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/priority_queue.mod b/files/grub_unbuntu22-04/x86_64-efi/priority_queue.mod new file mode 100644 index 0000000000000000000000000000000000000000..9898cc13027a66e10a29762c0b7954af52918cca Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/priority_queue.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/probe.mod b/files/grub_unbuntu22-04/x86_64-efi/probe.mod new file mode 100644 index 0000000000000000000000000000000000000000..09be459f23402b177e76adc3ed1b1440315487f3 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/probe.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/procfs.mod b/files/grub_unbuntu22-04/x86_64-efi/procfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..08797e7a19a0384e66ef9337c0ad6be92b6f4fea Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/procfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/progress.mod b/files/grub_unbuntu22-04/x86_64-efi/progress.mod new file mode 100644 index 0000000000000000000000000000000000000000..90a3da00005756417c2ff3451e2b728ce6bd95ca Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/progress.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/raid5rec.mod b/files/grub_unbuntu22-04/x86_64-efi/raid5rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..4a58c1ef93c22f10f31032ba91b9c0513fe9a4cc Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/raid5rec.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/raid6rec.mod b/files/grub_unbuntu22-04/x86_64-efi/raid6rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..a55b848819bee9a43759728648885ac5044fb997 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/raid6rec.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/random.mod b/files/grub_unbuntu22-04/x86_64-efi/random.mod new file mode 100644 index 0000000000000000000000000000000000000000..88cce449dd54a6c8b1d9e7686ceeac5e23efa964 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/random.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/rdmsr.mod b/files/grub_unbuntu22-04/x86_64-efi/rdmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..89aa6f01c21e3c000bea1f8d973b53266ef31ef7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/rdmsr.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/read.mod b/files/grub_unbuntu22-04/x86_64-efi/read.mod new file mode 100644 index 0000000000000000000000000000000000000000..b6f510ed31601bd3efd2d0dd51ff4a0afdd0e7ae Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/read.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/reboot.mod b/files/grub_unbuntu22-04/x86_64-efi/reboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..57887956a2b4da9f7759d6b11429510190ab775d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/reboot.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/regexp.mod b/files/grub_unbuntu22-04/x86_64-efi/regexp.mod new file mode 100644 index 0000000000000000000000000000000000000000..e43f911136393ee28d09309f17be8074bf2cab14 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/regexp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/reiserfs.mod b/files/grub_unbuntu22-04/x86_64-efi/reiserfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..fccc606d325242241bd1b21b34e38e2836c8b708 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/reiserfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/relocator.mod b/files/grub_unbuntu22-04/x86_64-efi/relocator.mod new file mode 100644 index 0000000000000000000000000000000000000000..3b3e58b4c0fe7a521a381a629b7e58ca5c0ae85b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/relocator.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/romfs.mod b/files/grub_unbuntu22-04/x86_64-efi/romfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..801f9cd6d344da58a64f2ee7eed6f7862bc9d951 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/romfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/scsi.mod b/files/grub_unbuntu22-04/x86_64-efi/scsi.mod new file mode 100644 index 0000000000000000000000000000000000000000..c80ca69bd8bac4c4d354f6b7d762a6cbaa70af66 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/scsi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/search.mod b/files/grub_unbuntu22-04/x86_64-efi/search.mod new file mode 100644 index 0000000000000000000000000000000000000000..e5c3532c4a0968f3d859da1c93567c1a1b1f94a9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/search.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/search_fs_file.mod b/files/grub_unbuntu22-04/x86_64-efi/search_fs_file.mod new file mode 100644 index 0000000000000000000000000000000000000000..4cb427021db0398bc4b4875bc8a317f3ede2e98a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/search_fs_file.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/search_fs_uuid.mod b/files/grub_unbuntu22-04/x86_64-efi/search_fs_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..c16207035540af10d55be1736f553c2891822198 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/search_fs_uuid.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/search_label.mod b/files/grub_unbuntu22-04/x86_64-efi/search_label.mod new file mode 100644 index 0000000000000000000000000000000000000000..00603e2eba782b77e4976f4db6ba4ba95652f0ff Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/search_label.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/serial.mod b/files/grub_unbuntu22-04/x86_64-efi/serial.mod new file mode 100644 index 0000000000000000000000000000000000000000..a1d850e22b76e6944c1713084fc28ec0179d70b3 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/serial.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/setjmp.mod b/files/grub_unbuntu22-04/x86_64-efi/setjmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e4dfcdd8a862acdcf7a84b27a007ff249950972 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/setjmp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/setjmp_test.mod b/files/grub_unbuntu22-04/x86_64-efi/setjmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..9bc41dc5f33a0847a78ab1fca4049417c638a45e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/setjmp_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/setpci.mod b/files/grub_unbuntu22-04/x86_64-efi/setpci.mod new file mode 100644 index 0000000000000000000000000000000000000000..ca6da850b538ca8a939d659bcd2bf89de2a10ee2 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/setpci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/sfs.mod b/files/grub_unbuntu22-04/x86_64-efi/sfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..fc97eea1eeff6f11b201ff0380db0d442659afb7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/sfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/shift_test.mod b/files/grub_unbuntu22-04/x86_64-efi/shift_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..1ee0f73e347524d2bca8236930a031d8d269abd4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/shift_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/signature_test.mod b/files/grub_unbuntu22-04/x86_64-efi/signature_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..587d4efe69652c6e91672644737a38952d731a84 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/signature_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/sleep.mod b/files/grub_unbuntu22-04/x86_64-efi/sleep.mod new file mode 100644 index 0000000000000000000000000000000000000000..1c2f054c7546be4f375870099d262006a62056ea Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/sleep.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/sleep_test.mod b/files/grub_unbuntu22-04/x86_64-efi/sleep_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..f52e9dc3a887bb627a3ec6c14f208bc3a68c8af9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/sleep_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/smbios.mod b/files/grub_unbuntu22-04/x86_64-efi/smbios.mod new file mode 100644 index 0000000000000000000000000000000000000000..a59f8906ee11afec9b1b609d4ddce1f00f2077e5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/smbios.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/spkmodem.mod b/files/grub_unbuntu22-04/x86_64-efi/spkmodem.mod new file mode 100644 index 0000000000000000000000000000000000000000..7ee2190198fc6d08d70e74388b3625e8bdf55098 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/spkmodem.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/squash4.mod b/files/grub_unbuntu22-04/x86_64-efi/squash4.mod new file mode 100644 index 0000000000000000000000000000000000000000..adc4118da5ba7547ff2b501c22ecfe44895a4f48 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/squash4.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/strtoull_test.mod b/files/grub_unbuntu22-04/x86_64-efi/strtoull_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..507da67d82f47766138bfc5736b4795ad4ee87f8 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/strtoull_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/syslinuxcfg.mod b/files/grub_unbuntu22-04/x86_64-efi/syslinuxcfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..3f8fa16d53f2c72374b91eb8f488d6f6ee2a69c5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/syslinuxcfg.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/tar.mod b/files/grub_unbuntu22-04/x86_64-efi/tar.mod new file mode 100644 index 0000000000000000000000000000000000000000..bebc0a2608fa1ca38dd79b65d278dcec3052b767 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/tar.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/terminal.lst b/files/grub_unbuntu22-04/x86_64-efi/terminal.lst new file mode 100644 index 0000000000000000000000000000000000000000..3c9a5a34a6f31f2c42b87668d2e47f3a2954118e --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/terminal.lst @@ -0,0 +1,9 @@ +iat_keyboard: at_keyboard +iserial: serial +iserial_*: serial +oaudio: morse +ocbmemc: cbmemc +ogfxterm: gfxterm +oserial: serial +oserial_*: serial +ospkmodem: spkmodem diff --git a/files/grub_unbuntu22-04/x86_64-efi/terminal.mod b/files/grub_unbuntu22-04/x86_64-efi/terminal.mod new file mode 100644 index 0000000000000000000000000000000000000000..38e34ada47da6ebae60279ef8dc6aeb05b32a415 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/terminal.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/terminfo.mod b/files/grub_unbuntu22-04/x86_64-efi/terminfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..8652de35b378ba5547ef4689e7d095a37811e937 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/terminfo.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/test.mod b/files/grub_unbuntu22-04/x86_64-efi/test.mod new file mode 100644 index 0000000000000000000000000000000000000000..1091abd65a06d9cea98a400fceab85587795e08a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/test_blockarg.mod b/files/grub_unbuntu22-04/x86_64-efi/test_blockarg.mod new file mode 100644 index 0000000000000000000000000000000000000000..d759c7e4c37ade7d9938541176ed6856aca52319 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/test_blockarg.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/testload.mod b/files/grub_unbuntu22-04/x86_64-efi/testload.mod new file mode 100644 index 0000000000000000000000000000000000000000..caef3e3ce19e65ca4941088f5ffb599c6c97efed Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/testload.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/testspeed.mod b/files/grub_unbuntu22-04/x86_64-efi/testspeed.mod new file mode 100644 index 0000000000000000000000000000000000000000..eeac63bd9015540aeb211366ca119d99026de85e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/testspeed.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/tftp.mod b/files/grub_unbuntu22-04/x86_64-efi/tftp.mod new file mode 100644 index 0000000000000000000000000000000000000000..7efbaee4cde13e7acd484078b0147c6e3625b20e Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/tftp.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/tga.mod b/files/grub_unbuntu22-04/x86_64-efi/tga.mod new file mode 100644 index 0000000000000000000000000000000000000000..1e8117e7b2783b8666d97fb7aa64233f4b0a8e60 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/tga.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/time.mod b/files/grub_unbuntu22-04/x86_64-efi/time.mod new file mode 100644 index 0000000000000000000000000000000000000000..61f1cf1e702b217a51ee7b40bbd16f91b8678cc7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/time.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/tpm.mod b/files/grub_unbuntu22-04/x86_64-efi/tpm.mod new file mode 100644 index 0000000000000000000000000000000000000000..e9942db345cf7b6c41359b5d467206a62a1dd3bd Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/tpm.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/tr.mod b/files/grub_unbuntu22-04/x86_64-efi/tr.mod new file mode 100644 index 0000000000000000000000000000000000000000..103a52421e58f798f77740678318f8063a1c36ec Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/tr.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/trig.mod b/files/grub_unbuntu22-04/x86_64-efi/trig.mod new file mode 100644 index 0000000000000000000000000000000000000000..5db5960b998d3e90d4aa58054d3584e22cb905b9 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/trig.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/true.mod b/files/grub_unbuntu22-04/x86_64-efi/true.mod new file mode 100644 index 0000000000000000000000000000000000000000..6af285265a6d22b3a827510f9c4b2697db8ac20b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/true.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/udf.mod b/files/grub_unbuntu22-04/x86_64-efi/udf.mod new file mode 100644 index 0000000000000000000000000000000000000000..61fa58ce9e2f0a92c5135f3aa522cae2863aa43c Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/udf.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ufs1.mod b/files/grub_unbuntu22-04/x86_64-efi/ufs1.mod new file mode 100644 index 0000000000000000000000000000000000000000..72efc5fb475fb5f3fba6508e1b1ab3d0bfcd8dfa Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ufs1.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ufs1_be.mod b/files/grub_unbuntu22-04/x86_64-efi/ufs1_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..ffe6d39ea889693096014a0fb177fd9f9a61175d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ufs1_be.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/ufs2.mod b/files/grub_unbuntu22-04/x86_64-efi/ufs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..da7012008056fa6c2322ba68a53db3a82cbf7fb2 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/ufs2.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/uhci.mod b/files/grub_unbuntu22-04/x86_64-efi/uhci.mod new file mode 100644 index 0000000000000000000000000000000000000000..dcb120154baea7f1ed81eed77a22d09b3d148f9a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/uhci.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usb.mod b/files/grub_unbuntu22-04/x86_64-efi/usb.mod new file mode 100644 index 0000000000000000000000000000000000000000..805d4336d2ab817893ceb694245a59d0a1d98150 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usb.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usb_keyboard.mod b/files/grub_unbuntu22-04/x86_64-efi/usb_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..9e5fb37e37dedb376ae4dcd308c295c1c654a97d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usb_keyboard.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbms.mod b/files/grub_unbuntu22-04/x86_64-efi/usbms.mod new file mode 100644 index 0000000000000000000000000000000000000000..09e714e2a5de2eeb5848dcb380ae85dc1019de70 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbms.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbserial_common.mod b/files/grub_unbuntu22-04/x86_64-efi/usbserial_common.mod new file mode 100644 index 0000000000000000000000000000000000000000..af9c0024712d80542b8ed0ac642b679f7b9297c0 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbserial_common.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbserial_ftdi.mod b/files/grub_unbuntu22-04/x86_64-efi/usbserial_ftdi.mod new file mode 100644 index 0000000000000000000000000000000000000000..f42c0b6233783d7ee341979ab480e48f7694cea5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbserial_ftdi.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbserial_pl2303.mod b/files/grub_unbuntu22-04/x86_64-efi/usbserial_pl2303.mod new file mode 100644 index 0000000000000000000000000000000000000000..cb57f8dae5ff8e73d692eda1f6fe8d5a60f024d4 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbserial_pl2303.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbserial_usbdebug.mod b/files/grub_unbuntu22-04/x86_64-efi/usbserial_usbdebug.mod new file mode 100644 index 0000000000000000000000000000000000000000..1b483e730f8b20a9ce735c3280da66711c58bdd7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbserial_usbdebug.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/usbtest.mod b/files/grub_unbuntu22-04/x86_64-efi/usbtest.mod new file mode 100644 index 0000000000000000000000000000000000000000..7a968f37fa7f3b158f478d254f491c33333617e3 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/usbtest.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/video.lst b/files/grub_unbuntu22-04/x86_64-efi/video.lst new file mode 100644 index 0000000000000000000000000000000000000000..ae9ba23e441922f0dd48cf5280eeea444a0bf0f4 --- /dev/null +++ b/files/grub_unbuntu22-04/x86_64-efi/video.lst @@ -0,0 +1,4 @@ +efi_gop +efi_uga +video_bochs +video_cirrus diff --git a/files/grub_unbuntu22-04/x86_64-efi/video.mod b/files/grub_unbuntu22-04/x86_64-efi/video.mod new file mode 100644 index 0000000000000000000000000000000000000000..52ba33685c508486c1c3eea5cb9eaf3409df9665 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/video.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/video_bochs.mod b/files/grub_unbuntu22-04/x86_64-efi/video_bochs.mod new file mode 100644 index 0000000000000000000000000000000000000000..212d5a8f1811beab7477fb2335e19170d78a79c5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/video_bochs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/video_cirrus.mod b/files/grub_unbuntu22-04/x86_64-efi/video_cirrus.mod new file mode 100644 index 0000000000000000000000000000000000000000..b092ec190076524caeb60543e533a23782c4bcf7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/video_cirrus.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/video_colors.mod b/files/grub_unbuntu22-04/x86_64-efi/video_colors.mod new file mode 100644 index 0000000000000000000000000000000000000000..616e2ce1011053a56ffad1970b7c338ec27af9ae Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/video_colors.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/video_fb.mod b/files/grub_unbuntu22-04/x86_64-efi/video_fb.mod new file mode 100644 index 0000000000000000000000000000000000000000..a3d7f8cf57542426ae504d1e9aa6cc04e1761f42 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/video_fb.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/videoinfo.mod b/files/grub_unbuntu22-04/x86_64-efi/videoinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..1a9b0fc743f7922d972d586b288e8c765024cd0d Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/videoinfo.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/videotest.mod b/files/grub_unbuntu22-04/x86_64-efi/videotest.mod new file mode 100644 index 0000000000000000000000000000000000000000..386e040f31b5fd7a18b18264bbbe0a3aa292a70b Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/videotest.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/videotest_checksum.mod b/files/grub_unbuntu22-04/x86_64-efi/videotest_checksum.mod new file mode 100644 index 0000000000000000000000000000000000000000..c6cdbaf6ba71eb7b5317dc169077e0e67315ca29 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/videotest_checksum.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/wrmsr.mod b/files/grub_unbuntu22-04/x86_64-efi/wrmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..ddfc20652acaaac60c48e2d5887387d0872f429a Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/wrmsr.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/xfs.mod b/files/grub_unbuntu22-04/x86_64-efi/xfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..58007ae8f286bf1a7f8f8d3c55da6f22182a2e30 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/xfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/xnu.mod b/files/grub_unbuntu22-04/x86_64-efi/xnu.mod new file mode 100644 index 0000000000000000000000000000000000000000..0518320e0ede45e997f815bb0e802432022b7f27 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/xnu.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid.mod b/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..1422857e86eab80d4bbba64632f8ac7d1ed1ddf5 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid_test.mod b/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..8f0d26ede8d18c4cf2ee27e98fce901d8fab6cea Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/xnu_uuid_test.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/xzio.mod b/files/grub_unbuntu22-04/x86_64-efi/xzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..dae994251b73c190a97043f9342b2d8fc6809d19 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/xzio.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/zfs.mod b/files/grub_unbuntu22-04/x86_64-efi/zfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..7206b41987571dd8683a32cbdc6f7a553d821e64 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/zfs.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/zfscrypt.mod b/files/grub_unbuntu22-04/x86_64-efi/zfscrypt.mod new file mode 100644 index 0000000000000000000000000000000000000000..d3231137e9e62e7a9f7041fc0d39a928e14710d6 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/zfscrypt.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/zfsinfo.mod b/files/grub_unbuntu22-04/x86_64-efi/zfsinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..ab973122e4db264018d20599bb781da2bd31f4b7 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/zfsinfo.mod differ diff --git a/files/grub_unbuntu22-04/x86_64-efi/zstd.mod b/files/grub_unbuntu22-04/x86_64-efi/zstd.mod new file mode 100644 index 0000000000000000000000000000000000000000..03048de2e2ff575c3c9a07fff0b7be32a1369101 Binary files /dev/null and b/files/grub_unbuntu22-04/x86_64-efi/zstd.mod differ diff --git a/files/grub_unbuntu22-04_bios/fonts/unicode.pf2 b/files/grub_unbuntu22-04_bios/fonts/unicode.pf2 new file mode 100644 index 0000000000000000000000000000000000000000..7848a5d31d8efb1875baf3cc48156a73487de17b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/fonts/unicode.pf2 differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/915resolution.mod b/files/grub_unbuntu22-04_bios/i386-pc/915resolution.mod new file mode 100644 index 0000000000000000000000000000000000000000..210c82bf66686375d7e0718d6c513618e394c1e6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/915resolution.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/acpi.mod b/files/grub_unbuntu22-04_bios/i386-pc/acpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..94c4162358a83dce2e86d0a457d7050270871b98 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/acpi.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/adler32.mod b/files/grub_unbuntu22-04_bios/i386-pc/adler32.mod new file mode 100644 index 0000000000000000000000000000000000000000..9bab8c8bc5dc940527d7ad2ef56284edb83fd9ef Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/adler32.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/affs.mod b/files/grub_unbuntu22-04_bios/i386-pc/affs.mod new file mode 100644 index 0000000000000000000000000000000000000000..ddf371d6eda4386c067ef2d4f31c7d572bfc63f8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/affs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/afs.mod b/files/grub_unbuntu22-04_bios/i386-pc/afs.mod new file mode 100644 index 0000000000000000000000000000000000000000..2ca47f79d5116581ebf83a4765f4668b2b810177 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/afs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/afsplitter.mod b/files/grub_unbuntu22-04_bios/i386-pc/afsplitter.mod new file mode 100644 index 0000000000000000000000000000000000000000..ee83f839ad81f2daf66d60721076b6799f39164b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/afsplitter.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ahci.mod b/files/grub_unbuntu22-04_bios/i386-pc/ahci.mod new file mode 100644 index 0000000000000000000000000000000000000000..19c7d0ad0c53d91f092e4576f7be5afcbbe774eb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ahci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/all_video.mod b/files/grub_unbuntu22-04_bios/i386-pc/all_video.mod new file mode 100644 index 0000000000000000000000000000000000000000..8462964baeb040a9e732628ee0993be67bf76a30 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/all_video.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/aout.mod b/files/grub_unbuntu22-04_bios/i386-pc/aout.mod new file mode 100644 index 0000000000000000000000000000000000000000..dc10db9a552636f104720cf0ed63d86b1b27499e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/aout.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/archelp.mod b/files/grub_unbuntu22-04_bios/i386-pc/archelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..41bee624f26e0234502ca702c88a3f85708b038c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/archelp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/at_keyboard.mod b/files/grub_unbuntu22-04_bios/i386-pc/at_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..86e5a9ecd177ac3a09101aab837be088f886bcbd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/at_keyboard.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ata.mod b/files/grub_unbuntu22-04_bios/i386-pc/ata.mod new file mode 100644 index 0000000000000000000000000000000000000000..af7f8b6a2151dc1029cb507e4004b141a283fc8a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ata.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/backtrace.mod b/files/grub_unbuntu22-04_bios/i386-pc/backtrace.mod new file mode 100644 index 0000000000000000000000000000000000000000..2753c035ca49ea91d477a650d858a531715c369e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/backtrace.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/bfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..f37cbe31d8df267b62392b554868c752bb6bb534 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/biosdisk.mod b/files/grub_unbuntu22-04_bios/i386-pc/biosdisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..f26b3924858f13d85d6b00522e55e35be27d93b3 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/biosdisk.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bitmap.mod b/files/grub_unbuntu22-04_bios/i386-pc/bitmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..8cb26a23cde62e7b3a6d564ffd8fac38057b8d65 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bitmap.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bitmap_scale.mod b/files/grub_unbuntu22-04_bios/i386-pc/bitmap_scale.mod new file mode 100644 index 0000000000000000000000000000000000000000..72040413ba7b44d5934becc6a310f5ada50f135a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bitmap_scale.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/blocklist.mod b/files/grub_unbuntu22-04_bios/i386-pc/blocklist.mod new file mode 100644 index 0000000000000000000000000000000000000000..5b687d13b2d91cf9413ff632a27d0b89e0b8466e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/blocklist.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/boot.mod b/files/grub_unbuntu22-04_bios/i386-pc/boot.mod new file mode 100644 index 0000000000000000000000000000000000000000..006bcd70abf26403919c5157d62550d2bb6018d5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/boot.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bsd.mod b/files/grub_unbuntu22-04_bios/i386-pc/bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..f910adaf61642b34c280ab93270962248eccfc63 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bsd.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bswap_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/bswap_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..decd7aec6df5d0d1a1b3c324cb7b959ba0d06734 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bswap_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/btrfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/btrfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4b23dbdf08490292c9e20b367be147f3f55fed84 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/btrfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/bufio.mod b/files/grub_unbuntu22-04_bios/i386-pc/bufio.mod new file mode 100644 index 0000000000000000000000000000000000000000..510317f514833441d8bf829d69393ae2a20f4695 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/bufio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cat.mod b/files/grub_unbuntu22-04_bios/i386-pc/cat.mod new file mode 100644 index 0000000000000000000000000000000000000000..8eaa14bdca88e83ab87ad5654f5eeb77778e498a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cat.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cbfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/cbfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..9120d092eb98c71aa7311d43a169710448cb5c06 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cbfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cbls.mod b/files/grub_unbuntu22-04_bios/i386-pc/cbls.mod new file mode 100644 index 0000000000000000000000000000000000000000..1b4950b764c14dbf6750e96d91c5a0f9aff9a5bc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cbls.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cbmemc.mod b/files/grub_unbuntu22-04_bios/i386-pc/cbmemc.mod new file mode 100644 index 0000000000000000000000000000000000000000..ac39b623b788fde85e06314266d96a1ad763df4d Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cbmemc.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cbtable.mod b/files/grub_unbuntu22-04_bios/i386-pc/cbtable.mod new file mode 100644 index 0000000000000000000000000000000000000000..9f88761b2b5c581e15000114cdec5b701c5c4f6f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cbtable.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cbtime.mod b/files/grub_unbuntu22-04_bios/i386-pc/cbtime.mod new file mode 100644 index 0000000000000000000000000000000000000000..6de822c0d7a2a32f91c2532b051794d2769e42c6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cbtime.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/chain.mod b/files/grub_unbuntu22-04_bios/i386-pc/chain.mod new file mode 100644 index 0000000000000000000000000000000000000000..cb7c92f90aa477608075ca7ec8a82e301332ca15 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/chain.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cmdline_cat_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/cmdline_cat_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..6e9bcb3f4bf2118a72830ff3b9b7ef3d748920cb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cmdline_cat_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cmosdump.mod b/files/grub_unbuntu22-04_bios/i386-pc/cmosdump.mod new file mode 100644 index 0000000000000000000000000000000000000000..22a9990483acd231935e434c7643983f34ba560e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cmosdump.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cmostest.mod b/files/grub_unbuntu22-04_bios/i386-pc/cmostest.mod new file mode 100644 index 0000000000000000000000000000000000000000..d76ad51afbe2a574649eaad04633d9ec75e8f61e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cmostest.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cmp.mod b/files/grub_unbuntu22-04_bios/i386-pc/cmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..fd1afe405fba79e284eff947704d51dbb6c9e753 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cmp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cmp_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/cmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e7e9eb1383ef17d9953b07141805f158210f79f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cmp_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/command.lst b/files/grub_unbuntu22-04_bios/i386-pc/command.lst new file mode 100644 index 0000000000000000000000000000000000000000..6ecab3dd1d87548f188f942882e77f8f2e476f91 --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/command.lst @@ -0,0 +1,205 @@ +*acpi: acpi +*all_functional_test: functional_test +*background_image: gfxterm_background +*cat: cat +*cpuid: cpuid +*crc: hashsum +*cryptomount: cryptodisk +*drivemap: drivemap +*echo: echo +*extract_syslinux_entries_configfile: syslinuxcfg +*extract_syslinux_entries_source: syslinuxcfg +*file: file +*functional_test: functional_test +*gettext: gettext +*halt: halt +*hashsum: hashsum +*hdparm: hdparm +*hello: hello +*help: help +*hexdump: hexdump +*inb: iorw +*inl: iorw +*inw: iorw +*keystatus: keystatus +*kfreebsd: bsd +*knetbsd: bsd +*kopenbsd: bsd +*list_env: loadenv +*load_env: loadenv +*loopback: loopback +*ls: ls +*lsacpi: lsacpi +*lspci: lspci +*md5sum: hashsum +*menuentry: normal +*pcidump: pcidump +*plan9: plan9 +*probe: probe +*rdmsr: rdmsr +*read_byte: memrw +*read_dword: memrw +*read_word: memrw +*regexp: regexp +*save_env: loadenv +*search: search +*sendkey: sendkey +*serial: serial +*setpci: setpci +*sha1sum: hashsum +*sha256sum: hashsum +*sha512sum: hashsum +*sleep: sleep +*smbios: smbios +*submenu: normal +*syslinux_configfile: syslinuxcfg +*syslinux_source: syslinuxcfg +*terminfo: terminfo +*test_blockarg: test_blockarg +*testspeed: testspeed +*tr: tr +*trust: pgp +*verify_detached: pgp +*xnu_splash: xnu +*zfskey: zfscrypt +.: configfile +915resolution: 915resolution +[: test +authenticate: normal +background_color: gfxterm_background +backtrace: backtrace +badram: mmap +blocklist: blocklist +boot: boot +break: normal +cat: minicmd +cbmemc: cbmemc +chainloader: chain +clear: normal +cmosclean: cmostest +cmosdump: cmosdump +cmosset: cmostest +cmostest: cmostest +cmp: cmp +configfile: configfile +continue: normal +coreboot_boottime: cbtime +cutmem: mmap +date: date +distrust: pgp +dump: minicmd +efiemu_loadcore: efiemu +efiemu_prepare: efiemu +efiemu_unload: efiemu +eval: eval +exit: minicmd +export: normal +extract_entries_configfile: configfile +extract_entries_source: configfile +extract_legacy_entries_configfile: legacycfg +extract_legacy_entries_source: legacycfg +false: true +freedos: freedos +gdbstub: gdb +gdbstub_break: gdb +gdbstub_stop: gdb +gptsync: gptsync +help: minicmd +hexdump_random: random +hwmatch: hwmatch +initrd16: linux16 +initrd: linux +keymap: keylayouts +kfreebsd_loadenv: bsd +kfreebsd_module: bsd +kfreebsd_module_elf: bsd +knetbsd_module: bsd +knetbsd_module_elf: bsd +kopenbsd_ramdisk: bsd +legacy_check_password: legacycfg +legacy_configfile: legacycfg +legacy_initrd: legacycfg +legacy_initrd_nounzip: legacycfg +legacy_kernel: legacycfg +legacy_password: legacycfg +legacy_source: legacycfg +linux16: linux16 +linux: linux +list_trusted: pgp +loadfont: font +lsapm: lsapm +lscoreboot: cbls +lsfonts: font +lsmmap: lsmmap +lsmod: minicmd +macppcbless: macbless +mactelbless: macbless +module2: multiboot2 +module: multiboot +multiboot2: multiboot2 +multiboot: multiboot +nativedisk: nativedisk +net_add_addr: net +net_add_dns: net +net_add_route: net +net_bootp6: net +net_bootp: net +net_del_addr: net +net_del_dns: net +net_del_route: net +net_dhcp: net +net_get_dhcp_option: net +net_ipv6_autoconf: net +net_ls_addr: net +net_ls_cards: net +net_ls_dns: net +net_ls_routes: net +net_nslookup: net +normal: normal +normal_exit: normal +ntldr: ntldr +outb: iorw +outl: iorw +outw: iorw +parttool: parttool +password: password +password_pbkdf2: password_pbkdf2 +play: play +pxechainloader: pxechain +read: read +reboot: reboot +return: normal +rmmod: minicmd +search.file: search_fs_file +search.fs_label: search_label +search.fs_uuid: search_fs_uuid +setparams: normal +shift: normal +source: configfile +terminal_input: terminal +terminal_output: terminal +test: test +testload: testload +time: time +true: true +truecrypt: truecrypt +usb: usbtest +vbeinfo: videoinfo +vbetest: videotest +videoinfo: videoinfo +videotest: videotest +write_byte: memrw +write_dword: memrw +write_word: memrw +wrmsr: wrmsr +xnu_devprop_load: xnu +xnu_kernel64: xnu +xnu_kernel: xnu +xnu_kext: xnu +xnu_kextdir: xnu +xnu_mkext: xnu +xnu_ramdisk: xnu +xnu_resume: xnu +xnu_uuid: xnu_uuid +zfs-bootfs: zfsinfo +zfsinfo: zfsinfo diff --git a/files/grub_unbuntu22-04_bios/i386-pc/configfile.mod b/files/grub_unbuntu22-04_bios/i386-pc/configfile.mod new file mode 100644 index 0000000000000000000000000000000000000000..cc1a2e6310e5fc03470ebd2968cca6f85af6c34f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/configfile.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/core.0 b/files/grub_unbuntu22-04_bios/i386-pc/core.0 new file mode 100644 index 0000000000000000000000000000000000000000..2c41f8b2e0ba105cf59b9935c472be726d60383c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/core.0 differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cpio.mod b/files/grub_unbuntu22-04_bios/i386-pc/cpio.mod new file mode 100644 index 0000000000000000000000000000000000000000..2fbf8209581dd2a7f5d49baf7f9e3289d7534839 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cpio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cpio_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/cpio_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..f8771cd67d3850063ccc44fa6ac865e5f99fa566 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cpio_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cpuid.mod b/files/grub_unbuntu22-04_bios/i386-pc/cpuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..691f9cfc64618fcffbb5499a35b1c14a90acc2df Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cpuid.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/crc64.mod b/files/grub_unbuntu22-04_bios/i386-pc/crc64.mod new file mode 100644 index 0000000000000000000000000000000000000000..efd33fb6fae99ec7171b70eddb4253041eb491a1 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/crc64.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/crypto.lst b/files/grub_unbuntu22-04_bios/i386-pc/crypto.lst new file mode 100644 index 0000000000000000000000000000000000000000..77d9efc01a4371a136c3330355aa68b0368e65c9 --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/crypto.lst @@ -0,0 +1,45 @@ +RIJNDAEL: gcry_rijndael +RIJNDAEL192: gcry_rijndael +RIJNDAEL256: gcry_rijndael +AES128: gcry_rijndael +AES-128: gcry_rijndael +AES-192: gcry_rijndael +AES-256: gcry_rijndael +ADLER32: adler32 +CRC64: crc64 +ARCFOUR: gcry_arcfour +BLOWFISH: gcry_blowfish +CAMELLIA128: gcry_camellia +CAMELLIA192: gcry_camellia +CAMELLIA256: gcry_camellia +CAST5: gcry_cast5 +CRC32: gcry_crc +CRC32RFC1510: gcry_crc +CRC24RFC2440: gcry_crc +DES: gcry_des +3DES: gcry_des +DSA: gcry_dsa +IDEA: gcry_idea +MD4: gcry_md4 +MD5: gcry_md5 +RFC2268_40: gcry_rfc2268 +AES: gcry_rijndael +AES192: gcry_rijndael +AES256: gcry_rijndael +RIPEMD160: gcry_rmd160 +RSA: gcry_rsa +SEED: gcry_seed +SERPENT128: gcry_serpent +SERPENT192: gcry_serpent +SERPENT256: gcry_serpent +SHA1: gcry_sha1 +SHA224: gcry_sha256 +SHA256: gcry_sha256 +SHA512: gcry_sha512 +SHA384: gcry_sha512 +TIGER192: gcry_tiger +TIGER: gcry_tiger +TIGER2: gcry_tiger +TWOFISH: gcry_twofish +TWOFISH128: gcry_twofish +WHIRLPOOL: gcry_whirlpool diff --git a/files/grub_unbuntu22-04_bios/i386-pc/crypto.mod b/files/grub_unbuntu22-04_bios/i386-pc/crypto.mod new file mode 100644 index 0000000000000000000000000000000000000000..ba729942b685877207fb233097bdfb20fb68d3bf Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/crypto.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cryptodisk.mod b/files/grub_unbuntu22-04_bios/i386-pc/cryptodisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..67f663686eea86bd5b614bd6e995145aa0aa7449 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cryptodisk.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/cs5536.mod b/files/grub_unbuntu22-04_bios/i386-pc/cs5536.mod new file mode 100644 index 0000000000000000000000000000000000000000..b41276f9bd535ee46f7b3c8cf569de729ac42116 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/cs5536.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ctz_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/ctz_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a3a558b5664193b69ca599943d18ddc8a1969670 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ctz_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/date.mod b/files/grub_unbuntu22-04_bios/i386-pc/date.mod new file mode 100644 index 0000000000000000000000000000000000000000..b0f763cc7d9422a01a0c28b19769e76cf96fa4e6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/date.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/datehook.mod b/files/grub_unbuntu22-04_bios/i386-pc/datehook.mod new file mode 100644 index 0000000000000000000000000000000000000000..466aed25b76a56c5064d478f104e9f7659e6a836 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/datehook.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/datetime.mod b/files/grub_unbuntu22-04_bios/i386-pc/datetime.mod new file mode 100644 index 0000000000000000000000000000000000000000..2169eff4dc5d8dea825ac7771ba0d004db5398ec Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/datetime.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/disk.mod b/files/grub_unbuntu22-04_bios/i386-pc/disk.mod new file mode 100644 index 0000000000000000000000000000000000000000..883f070d5af573e2feba6dae4cb72ea6ffcb76d3 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/disk.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/diskfilter.mod b/files/grub_unbuntu22-04_bios/i386-pc/diskfilter.mod new file mode 100644 index 0000000000000000000000000000000000000000..ddb971774a6fb64b390f48fdea7a429e6dded987 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/diskfilter.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/div.mod b/files/grub_unbuntu22-04_bios/i386-pc/div.mod new file mode 100644 index 0000000000000000000000000000000000000000..51be8313e6f5e46212b36c88b04bce143421c158 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/div.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/div_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/div_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..89afb6491945f99fc39a91fd03c67195f039211c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/div_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/dm_nv.mod b/files/grub_unbuntu22-04_bios/i386-pc/dm_nv.mod new file mode 100644 index 0000000000000000000000000000000000000000..2c9d8d35cc6c608968cf6beec1ef4ab612d0fb3c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/dm_nv.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/drivemap.mod b/files/grub_unbuntu22-04_bios/i386-pc/drivemap.mod new file mode 100644 index 0000000000000000000000000000000000000000..bf4ab834ad1b4d6520d8020395e8af1d017d2abe Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/drivemap.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/echo.mod b/files/grub_unbuntu22-04_bios/i386-pc/echo.mod new file mode 100644 index 0000000000000000000000000000000000000000..5b3e9516c9f7c21d8645e5bfbdb08686cd02f74a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/echo.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/efiemu.mod b/files/grub_unbuntu22-04_bios/i386-pc/efiemu.mod new file mode 100644 index 0000000000000000000000000000000000000000..ec0d41b1f4db624888b9bfc12badc785bd2efd31 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/efiemu.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/efiemu32.o b/files/grub_unbuntu22-04_bios/i386-pc/efiemu32.o new file mode 100644 index 0000000000000000000000000000000000000000..5ccbc29a3ea0aa424b01c22b61dda6389840301f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/efiemu32.o differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/efiemu64.o b/files/grub_unbuntu22-04_bios/i386-pc/efiemu64.o new file mode 100644 index 0000000000000000000000000000000000000000..85c9d12088efad53a242c1e6f2ec85871c6ab2e4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/efiemu64.o differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ehci.mod b/files/grub_unbuntu22-04_bios/i386-pc/ehci.mod new file mode 100644 index 0000000000000000000000000000000000000000..1e71a1aeb8fb3ad2d8a368ea9c50a8b84f26bbe7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ehci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/elf.mod b/files/grub_unbuntu22-04_bios/i386-pc/elf.mod new file mode 100644 index 0000000000000000000000000000000000000000..2be28a239dd0d57a45b967750e41edf417cc88e3 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/elf.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/eval.mod b/files/grub_unbuntu22-04_bios/i386-pc/eval.mod new file mode 100644 index 0000000000000000000000000000000000000000..45c686a72862374cc8f3583b99f3bd9013d3c499 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/eval.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/exfat.mod b/files/grub_unbuntu22-04_bios/i386-pc/exfat.mod new file mode 100644 index 0000000000000000000000000000000000000000..07ca8ebc1ca0812b45fb92a6a323a566df05b763 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/exfat.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/exfctest.mod b/files/grub_unbuntu22-04_bios/i386-pc/exfctest.mod new file mode 100644 index 0000000000000000000000000000000000000000..963ffa7a1268b080dad58b1ab36f09498f6ba7bc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/exfctest.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ext2.mod b/files/grub_unbuntu22-04_bios/i386-pc/ext2.mod new file mode 100644 index 0000000000000000000000000000000000000000..45c8c04317028a0f068c3383597a1747c96e5ce3 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ext2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/extcmd.mod b/files/grub_unbuntu22-04_bios/i386-pc/extcmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..7533ccece06905b755702b966ad3d18b7e335cfd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/extcmd.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/f2fs.mod b/files/grub_unbuntu22-04_bios/i386-pc/f2fs.mod new file mode 100644 index 0000000000000000000000000000000000000000..bcd7c567cbeca297a4b6c0dff13e70f3878f6eb9 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/f2fs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/fat.mod b/files/grub_unbuntu22-04_bios/i386-pc/fat.mod new file mode 100644 index 0000000000000000000000000000000000000000..0e070e4fd9cc75315347b3491127af04914d88e5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/fat.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/file.mod b/files/grub_unbuntu22-04_bios/i386-pc/file.mod new file mode 100644 index 0000000000000000000000000000000000000000..e3eac1d1b9df1372cad7e0eec23f3cff17863ac7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/file.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/font.mod b/files/grub_unbuntu22-04_bios/i386-pc/font.mod new file mode 100644 index 0000000000000000000000000000000000000000..863e60e40488f993b058c3192caa8dc64cc073fd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/font.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/freedos.mod b/files/grub_unbuntu22-04_bios/i386-pc/freedos.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b04dc8de2898431010b03d19b0b3eba2bbbc3df Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/freedos.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/fs.lst b/files/grub_unbuntu22-04_bios/i386-pc/fs.lst new file mode 100644 index 0000000000000000000000000000000000000000..0acd240b130a371f88b5a5d5415d9eaea6dc3557 --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/fs.lst @@ -0,0 +1,37 @@ +affs +afs +bfs +btrfs +cbfs +cpio +cpio_be +exfat +ext2 +f2fs +fat +hfs +hfsplus +iso9660 +jfs +minix +minix2 +minix2_be +minix3 +minix3_be +minix_be +newc +nilfs2 +ntfs +odc +procfs +reiserfs +romfs +sfs +squash4 +tar +udf +ufs1 +ufs1_be +ufs2 +xfs +zfs diff --git a/files/grub_unbuntu22-04_bios/i386-pc/fshelp.mod b/files/grub_unbuntu22-04_bios/i386-pc/fshelp.mod new file mode 100644 index 0000000000000000000000000000000000000000..24ecd68bd010a7a61b79dc2f825e04ab60b22749 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/fshelp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/functional_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/functional_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5714009bb466aa5c53e4e17d384711ec6130725 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/functional_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_arcfour.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_arcfour.mod new file mode 100644 index 0000000000000000000000000000000000000000..0f043b6a265dc9807199d9d4c2f41f602009207e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_arcfour.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_blowfish.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_blowfish.mod new file mode 100644 index 0000000000000000000000000000000000000000..625bb857c94da7f26af93d508784149f114890f5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_blowfish.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_camellia.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_camellia.mod new file mode 100644 index 0000000000000000000000000000000000000000..6a4285b602e48cb25761adbe2ac895c12c645ab8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_camellia.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_cast5.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_cast5.mod new file mode 100644 index 0000000000000000000000000000000000000000..85bb5119286e683e9e66c3ca3e3c7a74038e59ac Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_cast5.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_crc.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_crc.mod new file mode 100644 index 0000000000000000000000000000000000000000..ff725a587843875ce1de3a814d48dcd4bfd29670 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_crc.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_des.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_des.mod new file mode 100644 index 0000000000000000000000000000000000000000..2130898c277611b74f1a904d0e2fbe7480da8b38 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_des.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_dsa.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_dsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..8efe289bf447519501b5b15b321abd3648edb865 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_dsa.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_idea.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_idea.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a75b84f134087f2db6d6859c95475d4b3017ecc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_idea.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_md4.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_md4.mod new file mode 100644 index 0000000000000000000000000000000000000000..f2e10932af93f47bccff468ff3d92310a6110b83 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_md4.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_md5.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_md5.mod new file mode 100644 index 0000000000000000000000000000000000000000..ea77e162a2570840f919ee6d875b3dc339b7aac7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_md5.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_rfc2268.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rfc2268.mod new file mode 100644 index 0000000000000000000000000000000000000000..3028d8cadb9d41f6469f3aeb2b277e86f0776eb9 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rfc2268.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_rijndael.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rijndael.mod new file mode 100644 index 0000000000000000000000000000000000000000..4e795e31825f48d68171378893085acc7e3d2979 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rijndael.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_rmd160.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rmd160.mod new file mode 100644 index 0000000000000000000000000000000000000000..49f10a2d046956d6c49c92579623ea94e7560620 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rmd160.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_rsa.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rsa.mod new file mode 100644 index 0000000000000000000000000000000000000000..5c025d1547964f812eea08604c194e3df616b89a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_rsa.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_seed.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_seed.mod new file mode 100644 index 0000000000000000000000000000000000000000..858249738c99f563af346427e81a8041abf6d043 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_seed.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_serpent.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_serpent.mod new file mode 100644 index 0000000000000000000000000000000000000000..3858635237933c19d2da711301aeb1e8f1ff3304 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_serpent.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha1.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha1.mod new file mode 100644 index 0000000000000000000000000000000000000000..c92be3daa3824d73b10b2060dd97233ada9df5c8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha1.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha256.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha256.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6a493d843e079a3a33f91284b6aa4041cf91a44 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha256.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha512.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha512.mod new file mode 100644 index 0000000000000000000000000000000000000000..143da805bd1a574c59d9d4da0de9ca924f31e770 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_sha512.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_tiger.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_tiger.mod new file mode 100644 index 0000000000000000000000000000000000000000..c0aa75f056c93f6401e5af2e7c0ae0cefa379b8a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_tiger.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_twofish.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_twofish.mod new file mode 100644 index 0000000000000000000000000000000000000000..62bff8201053608b33de4efbb7d1868aab9f4678 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_twofish.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gcry_whirlpool.mod b/files/grub_unbuntu22-04_bios/i386-pc/gcry_whirlpool.mod new file mode 100644 index 0000000000000000000000000000000000000000..f690610a2def8377c8a20abe2a168fd047d5e35c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gcry_whirlpool.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gdb.mod b/files/grub_unbuntu22-04_bios/i386-pc/gdb.mod new file mode 100644 index 0000000000000000000000000000000000000000..edb6ffc963d797b26cf58e391048730998597560 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gdb.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/geli.mod b/files/grub_unbuntu22-04_bios/i386-pc/geli.mod new file mode 100644 index 0000000000000000000000000000000000000000..7eb1292b210717e4cb6b7ce14743c6bc86b0bc0f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/geli.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gettext.mod b/files/grub_unbuntu22-04_bios/i386-pc/gettext.mod new file mode 100644 index 0000000000000000000000000000000000000000..3d0d6b06000bceea4bd5db05d5daf02c9bb0dde1 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gettext.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gfxmenu.mod b/files/grub_unbuntu22-04_bios/i386-pc/gfxmenu.mod new file mode 100644 index 0000000000000000000000000000000000000000..9dc0c459b42ba68d2187d58abdce81617765b2e2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gfxmenu.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gfxterm.mod b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm.mod new file mode 100644 index 0000000000000000000000000000000000000000..f42829f84ef79cd27051d2e2d57e7ab257ea00f7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_background.mod b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_background.mod new file mode 100644 index 0000000000000000000000000000000000000000..a3595a03c0584b4ca7acdadae4db144e0bfeddf8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_background.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_menu.mod b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_menu.mod new file mode 100644 index 0000000000000000000000000000000000000000..3f81eac8d0d56c86d34d40dfd79168195f3c0f25 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gfxterm_menu.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gptsync.mod b/files/grub_unbuntu22-04_bios/i386-pc/gptsync.mod new file mode 100644 index 0000000000000000000000000000000000000000..6f083df1ff1a267c0933f3d555c55eca32ab9780 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gptsync.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/grub.cfg b/files/grub_unbuntu22-04_bios/i386-pc/grub.cfg new file mode 100644 index 0000000000000000000000000000000000000000..f4d97f6e07fff4fa766ce4f3163129f57891596c --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/grub.cfg @@ -0,0 +1 @@ +source /tmp/grub-tftp/grub-sub/grub.cfg \ No newline at end of file diff --git a/files/grub_unbuntu22-04_bios/i386-pc/gzio.mod b/files/grub_unbuntu22-04_bios/i386-pc/gzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e7a82debe8288e13c922060895812ac0be534bd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/gzio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/halt.mod b/files/grub_unbuntu22-04_bios/i386-pc/halt.mod new file mode 100644 index 0000000000000000000000000000000000000000..ffd5a8117198c413137a22f9ef3faef82fc33f7a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/halt.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hashsum.mod b/files/grub_unbuntu22-04_bios/i386-pc/hashsum.mod new file mode 100644 index 0000000000000000000000000000000000000000..f6a938c64d2044cceb382ca65f0930823cebd464 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hashsum.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hdparm.mod b/files/grub_unbuntu22-04_bios/i386-pc/hdparm.mod new file mode 100644 index 0000000000000000000000000000000000000000..08db7670b8a7e260ecb8bd511f6216d9acbfcd02 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hdparm.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hello.mod b/files/grub_unbuntu22-04_bios/i386-pc/hello.mod new file mode 100644 index 0000000000000000000000000000000000000000..45999265dc940e3483294de5d96f201544508d90 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hello.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/help.mod b/files/grub_unbuntu22-04_bios/i386-pc/help.mod new file mode 100644 index 0000000000000000000000000000000000000000..715735963df39e01b6f0ace0e05a33f0cb7e2491 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/help.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hexdump.mod b/files/grub_unbuntu22-04_bios/i386-pc/hexdump.mod new file mode 100644 index 0000000000000000000000000000000000000000..0cb19016b444c50dd51efba5cba13b95ea4b8e4f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hexdump.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/hfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..f9182110e4c4587a699dbdfde1cfb55990604588 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hfsplus.mod b/files/grub_unbuntu22-04_bios/i386-pc/hfsplus.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5b6dfd71cb71b5ea17720909d49b6c8ac7d15c0 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hfsplus.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hfspluscomp.mod b/files/grub_unbuntu22-04_bios/i386-pc/hfspluscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5d4bec457c8a58736acb45d7a11f016fd1524df Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hfspluscomp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/http.mod b/files/grub_unbuntu22-04_bios/i386-pc/http.mod new file mode 100644 index 0000000000000000000000000000000000000000..7965d3578b3b1efb47eac2aa041ee198df231352 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/http.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/hwmatch.mod b/files/grub_unbuntu22-04_bios/i386-pc/hwmatch.mod new file mode 100644 index 0000000000000000000000000000000000000000..3b2cc90e7d6e3d7e70d954535df0fae54872514d Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/hwmatch.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/iorw.mod b/files/grub_unbuntu22-04_bios/i386-pc/iorw.mod new file mode 100644 index 0000000000000000000000000000000000000000..8a174135d799d461235b9fa4750c525df5710d93 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/iorw.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/iso9660.mod b/files/grub_unbuntu22-04_bios/i386-pc/iso9660.mod new file mode 100644 index 0000000000000000000000000000000000000000..84acd40e137436b1a1df1ec1fce9ba08c147b079 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/iso9660.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/jfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/jfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..01dc212dd9f94d7ad6e6ece6d650fd3f3cd3e8de Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/jfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/jpeg.mod b/files/grub_unbuntu22-04_bios/i386-pc/jpeg.mod new file mode 100644 index 0000000000000000000000000000000000000000..d91cbcacec5e2bfc039d1b8e68105c3133e5945e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/jpeg.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/json.mod b/files/grub_unbuntu22-04_bios/i386-pc/json.mod new file mode 100644 index 0000000000000000000000000000000000000000..27b16f1835ca70ca8f9994d5216820a2d8c133cf Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/json.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/keylayouts.mod b/files/grub_unbuntu22-04_bios/i386-pc/keylayouts.mod new file mode 100644 index 0000000000000000000000000000000000000000..ed37d5ba7446d19b66c410c780d01c1a35a254ec Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/keylayouts.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/keystatus.mod b/files/grub_unbuntu22-04_bios/i386-pc/keystatus.mod new file mode 100644 index 0000000000000000000000000000000000000000..024c886ac36a39795e72aff4138bedd88be68388 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/keystatus.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ldm.mod b/files/grub_unbuntu22-04_bios/i386-pc/ldm.mod new file mode 100644 index 0000000000000000000000000000000000000000..c1ae30ddff3406fb83da84a060142cf2bc12394b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ldm.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/legacy_password_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/legacy_password_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..967eb2828f561fd22d6e0090c73106e7647a281f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/legacy_password_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/legacycfg.mod b/files/grub_unbuntu22-04_bios/i386-pc/legacycfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..039107f9b844c63adbeaf8466db13854876a481f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/legacycfg.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/linux.mod b/files/grub_unbuntu22-04_bios/i386-pc/linux.mod new file mode 100644 index 0000000000000000000000000000000000000000..713b3360575ca7c406ca50ac22b12ed96d92d5e8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/linux.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/linux16.mod b/files/grub_unbuntu22-04_bios/i386-pc/linux16.mod new file mode 100644 index 0000000000000000000000000000000000000000..d13f280d89fbe50ab45d82cf0a2a78a938fc0233 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/linux16.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/loadenv.mod b/files/grub_unbuntu22-04_bios/i386-pc/loadenv.mod new file mode 100644 index 0000000000000000000000000000000000000000..8d9454f37c6026b927fb7d69c3df1a7c124ed730 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/loadenv.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/loopback.mod b/files/grub_unbuntu22-04_bios/i386-pc/loopback.mod new file mode 100644 index 0000000000000000000000000000000000000000..d595615a8cacd3cb38247dc9ad6a13580003bc7b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/loopback.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ls.mod b/files/grub_unbuntu22-04_bios/i386-pc/ls.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5011b7352015d08cc86ea32b5a11a6d2dc69b0e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ls.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lsacpi.mod b/files/grub_unbuntu22-04_bios/i386-pc/lsacpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..b37254021dbfbe7763ed9677588c81e3914e8a58 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lsacpi.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lsapm.mod b/files/grub_unbuntu22-04_bios/i386-pc/lsapm.mod new file mode 100644 index 0000000000000000000000000000000000000000..b302ba7a445621ee4fc7e72144bcf1907772ba6c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lsapm.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lsmmap.mod b/files/grub_unbuntu22-04_bios/i386-pc/lsmmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..e498482051a851718f89bcae8b4c4bef762fee33 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lsmmap.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lspci.mod b/files/grub_unbuntu22-04_bios/i386-pc/lspci.mod new file mode 100644 index 0000000000000000000000000000000000000000..de45c94129abf273584ee6861acb8a03970db012 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lspci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/luks.mod b/files/grub_unbuntu22-04_bios/i386-pc/luks.mod new file mode 100644 index 0000000000000000000000000000000000000000..1514504592ee6d5258a760d2fd818dbb1c529a4b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/luks.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/luks2.mod b/files/grub_unbuntu22-04_bios/i386-pc/luks2.mod new file mode 100644 index 0000000000000000000000000000000000000000..78c0b242fe15a4878c3f791813caad7dd4bc609c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/luks2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lvm.mod b/files/grub_unbuntu22-04_bios/i386-pc/lvm.mod new file mode 100644 index 0000000000000000000000000000000000000000..598a37f93757c1d91d646fb9c0463a7f453426f0 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lvm.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/lzopio.mod b/files/grub_unbuntu22-04_bios/i386-pc/lzopio.mod new file mode 100644 index 0000000000000000000000000000000000000000..4086f3a3f2f5d19b71641a26561912481608dba9 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/lzopio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/macbless.mod b/files/grub_unbuntu22-04_bios/i386-pc/macbless.mod new file mode 100644 index 0000000000000000000000000000000000000000..7403e0ce5169b5cfb182497882f40a3dad099db2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/macbless.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/macho.mod b/files/grub_unbuntu22-04_bios/i386-pc/macho.mod new file mode 100644 index 0000000000000000000000000000000000000000..64dec1861d91fecab8dcec3b0d7dc173dedf12ac Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/macho.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mda_text.mod b/files/grub_unbuntu22-04_bios/i386-pc/mda_text.mod new file mode 100644 index 0000000000000000000000000000000000000000..6bbdfb1a81cd2b79327285660113a912380c2ac7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mda_text.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mdraid09.mod b/files/grub_unbuntu22-04_bios/i386-pc/mdraid09.mod new file mode 100644 index 0000000000000000000000000000000000000000..2b27327649be5fd7b435142e6d3e35c718723c32 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mdraid09.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mdraid09_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/mdraid09_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b526b0f264993ed62edf9cb94fe0e0bfb37d44c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mdraid09_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mdraid1x.mod b/files/grub_unbuntu22-04_bios/i386-pc/mdraid1x.mod new file mode 100644 index 0000000000000000000000000000000000000000..384014622f7bdc61572e06944f055c984ad61541 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mdraid1x.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/memdisk.mod b/files/grub_unbuntu22-04_bios/i386-pc/memdisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..c41a1a37f89b8198cc390bfe8bf409df4b11ca2c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/memdisk.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/memrw.mod b/files/grub_unbuntu22-04_bios/i386-pc/memrw.mod new file mode 100644 index 0000000000000000000000000000000000000000..91cb479aaa974b83a0734b9e6212bb3b6c2a3f13 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/memrw.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minicmd.mod b/files/grub_unbuntu22-04_bios/i386-pc/minicmd.mod new file mode 100644 index 0000000000000000000000000000000000000000..374c83cb7df1da93865aa5bae82b03475fa6e61d Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minicmd.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e8f738d6680a54f345d7432ccdc38703d5a8050 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix2.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix2.mod new file mode 100644 index 0000000000000000000000000000000000000000..c5994aab896ba97186078d4ab05031a807f1dc5c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix2_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix2_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..848782879b88897b59f14390d8c70e83f68c6951 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix2_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix3.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix3.mod new file mode 100644 index 0000000000000000000000000000000000000000..39f0e6a90522b1a1f6249a309a4012afea1fea13 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix3.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix3_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix3_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..dc750d417af0223d9a49e57aed9af9fc51be0575 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix3_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/minix_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/minix_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..8725f92a2672ab00cb1c34cda21f959cc5984e35 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/minix_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mmap.mod b/files/grub_unbuntu22-04_bios/i386-pc/mmap.mod new file mode 100644 index 0000000000000000000000000000000000000000..f97dd60b5fe703c5e48e9f33a399b6e07e969764 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mmap.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/moddep.lst b/files/grub_unbuntu22-04_bios/i386-pc/moddep.lst new file mode 100644 index 0000000000000000000000000000000000000000..438ad3fb53ccded110ce5ee49924e35f4c6137ad --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/moddep.lst @@ -0,0 +1,276 @@ +xfs: fshelp +fshelp: +videotest_checksum: video_fb font functional_test +relocator: mmap +procfs: archelp +offsetio: +gcry_seed: crypto +ufs2: +tr: extcmd +lsacpi: extcmd acpi +json: +gfxterm_background: extcmd gfxterm bitmap video video_colors bitmap_scale +file: offsetio extcmd elf macho +xnu_uuid: gcry_md5 +part_sunpc: +lsapm: +extcmd: +echo: extcmd +btrfs: gzio lzopio raid6rec zstd +read: +priority_queue: +gcry_dsa: mpi pgp +ctz_test: functional_test +cbls: cbtable +zfs: gzio +progress: normal +minix: +setjmp: +macbless: disk +hfspluscomp: gzio hfsplus +gcry_rsa: mpi pgp +cat: extcmd +videotest: font video gfxmenu +sleep: extcmd normal +reiserfs: fshelp +lspci: extcmd pci +div: +video_cirrus: video_fb video pci +testload: +search_fs_uuid: +part_dvh: +gcry_md5: crypto +gcry_arcfour: crypto +ufs1_be: +part_acorn: +iorw: extcmd +gfxterm: font video +cpio_be: archelp +scsi: +memdisk: +crc64: crypto +ata: scsi +multiboot2: relocator lsapm boot net acpi linux video mmap vbe +gcry_idea: crypto +cpuid: extcmd +cmp_test: functional_test +video_fb: +sfs: fshelp +zfscrypt: extcmd zfs crypto pbkdf2 gcry_rijndael gcry_sha1 +video_bochs: video_fb video pci +udf: fshelp +datehook: datetime +adler32: crypto +setjmp_test: setjmp functional_test +ntfscomp: ntfs +nativedisk: +freedos: relocator boot chain video +eval: normal +videoinfo: video +verifiers: +pbkdf2: crypto +password_pbkdf2: crypto pbkdf2 normal gcry_sha512 +font: bufio video +datetime: +crypto: +vga: video_fb video +strtoull_test: functional_test +pcidump: extcmd pci +mdraid09_be: diskfilter +afsplitter: crypto +normal: extcmd verifiers datetime crypto boot net bufio gettext terminal +efiemu: cpuid crypto acpi gcry_crc smbios +tftp: net +gcry_whirlpool: crypto +fat: fshelp +setpci: extcmd pci +boot: +ufs1: +cpio: archelp +chain: relocator boot video +cbmemc: normal terminfo cbtable +tga: bufio bitmap +spkmodem: terminfo +odc: archelp +drivemap: extcmd boot mmap +usbserial_pl2303: usb serial usbserial_common +regexp: extcmd normal +password: crypto normal +ntfs: fshelp +net: priority_queue datetime boot bufio +loadenv: extcmd disk +gzio: gcry_crc +ehci: boot cs5536 usb pci +archelp: +kernel: +usbtest: usb +pxechain: relocator boot video pxe +gptsync: disk +date: datetime +xnu: relocator extcmd verifiers efiemu boot random bitmap video mmap bitmap_scale macho +mul_test: functional_test +bufio: +acpi: extcmd mmap +cmostest: +png: bufio bitmap +minix2: +cs5536: pci +linux: relocator verifiers normal boot video mmap vbe +gcry_des: crypto +gcry_blowfish: crypto +part_plan: +part_bsd: part_msdos +lvm: diskfilter +gcry_tiger: crypto +blocklist: +xzio: crypto +usb_keyboard: usb keylayouts +nilfs2: fshelp +lsmmap: +gcry_cast5: crypto +backtrace: +testspeed: extcmd normal +squash4: fshelp gzio xzio lzopio +msdospart: disk parttool +lzopio: crypto +gfxterm_menu: procfs video_fb font normal functional_test +gcry_sha256: crypto +vga_text: +usb: pci +pata: ata pci +hwmatch: normal regexp pci +affs: fshelp +syslinuxcfg: extcmd normal +random: acpi hexdump +part_amiga: +play: +part_apple: +mpi: crypto +keylayouts: +jpeg: bufio bitmap +gcry_rmd160: crypto +cbfs: archelp +time: +loopback: extcmd +disk: +at_keyboard: boot keylayouts +true: +test: +part_sun: +part_msdos: +morse: +http: net +part_gpt: +luks2: json crypto pbkdf2 afsplitter cryptodisk +elf: +diskfilter: +bitmap: +mda_text: +cmp: +uhci: usb pci +ls: extcmd datetime normal +search: extcmd search_fs_uuid search_fs_file search_label +raid6rec: diskfilter +minix3_be: +memrw: extcmd +cbtime: cbtable +zstd: +raid5rec: diskfilter +rdmsr: extcmd +hello: extcmd +video: +shift_test: functional_test +minix2_be: +hashsum: extcmd crypto normal +gdb: backtrace serial +video_colors: +mdraid1x: diskfilter +gcry_twofish: crypto +gcry_sha512: crypto +cryptodisk: procfs extcmd crypto +parttool: normal +ohci: boot cs5536 usb pci +mmap: boot +minix3: +gfxmenu: gfxterm font normal bitmap video video_colors bitmap_scale trig +dm_nv: diskfilter +search_fs_file: +pxe: boot net +luks: crypto pbkdf2 afsplitter cryptodisk +ldm: part_msdos part_gpt diskfilter +hfsplus: fshelp +hfs: fshelp +hexdump: extcmd +gettext: +gcry_rijndael: crypto +aout: +terminal: +probe: extcmd +plan9: relocator extcmd verifiers boot video +functional_test: extcmd btrfs video_fb video +minicmd: +geli: crypto pbkdf2 gcry_sha256 cryptodisk gcry_sha512 +gcry_rfc2268: crypto +f2fs: fshelp +ext2: fshelp +bsd: relocator extcmd gcry_md5 cpuid crypto verifiers boot elf video mmap aout serial vbe +terminfo: extcmd +legacy_password_test: functional_test legacycfg +gcry_crc: crypto +gcry_camellia: crypto +bitmap_scale: bitmap +biosdisk: +part_dfly: +cbtable: +usbms: scsi usb +sleep_test: datetime functional_test +div_test: div functional_test +zfsinfo: zfs +wrmsr: +sendkey: extcmd boot +newc: archelp +multiboot: relocator lsapm boot net linux video mmap vbe +linux16: relocator boot linux video mmap +keystatus: extcmd +jfs: +gcry_md4: crypto +pci: +mdraid09: diskfilter +iso9660: fshelp +cmdline_cat_test: procfs video_fb font normal functional_test +bswap_test: functional_test +afs: fshelp +search_label: +reboot: relocator +pgp: extcmd verifiers crypto mpi gcry_sha1 +xnu_uuid_test: functional_test +test_blockarg: extcmd normal +serial: extcmd terminfo +configfile: normal +cmosdump: +romfs: fshelp +minix_be: +help: extcmd normal +halt: extcmd acpi +gcry_sha1: crypto +usbserial_usbdebug: usb serial usbserial_common +usbserial_ftdi: usb serial usbserial_common +hdparm: extcmd hexdump +trig: +vbe: video_fb video +tar: archelp +legacycfg: gcry_md5 crypto normal password linux +ahci: ata boot pci +915resolution: +pbkdf2_test: pbkdf2 functional_test gcry_sha1 +macho: +smbios: extcmd acpi +signature_test: procfs functional_test +gcry_serpent: crypto +bfs: fshelp +usbserial_common: usb serial +truecrypt: relocator boot gzio video mmap +ntldr: relocator boot chain video +exfctest: functional_test +exfat: fshelp +all_video: vbe vga video_bochs video_cirrus diff --git a/files/grub_unbuntu22-04_bios/i386-pc/modinfo.sh b/files/grub_unbuntu22-04_bios/i386-pc/modinfo.sh new file mode 100644 index 0000000000000000000000000000000000000000..8bc6f0b231b4bfb54a046c4d322bb89d13ef688c --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/modinfo.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# User-controllable options +grub_modinfo_target_cpu=i386 +grub_modinfo_platform=pc +grub_disk_cache_stats=0 +grub_boot_time_stats=0 +grub_have_font_source=1 + +# Autodetected config +grub_have_asm_uscore=0 +grub_bss_start_symbol="__bss_start" +grub_end_symbol="end" + +# Build environment +grub_target_cc='gcc-10' +grub_target_cc_version='gcc-10 (Ubuntu 10.4.0-4ubuntu1~22.04) 10.4.0' +grub_target_cflags='-std=gnu99 -Os -m32 -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2 -march=i386 -mrtd -mregparm=3 -falign-jumps=1 -falign-loops=1 -falign-functions=1 -freg-struct-return -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow -msoft-float -fno-dwarf2-cfi-asm -mno-stack-arg-probe -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-ident -fno-PIE -fno-pie -fno-stack-protector -Wtrampolines -Werror' +grub_target_cppflags='-Wno-unused-but-set-variable -Wall -W -DGRUB_MACHINE_PCBIOS=1 -DGRUB_MACHINE=I386_PC -m32 -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/10/include -I$(top_srcdir)/include -I$(top_builddir)/include' +grub_target_ccasflags=' -m32 -g -msoft-float -fno-PIE -fno-pie' +grub_target_ldflags='-no-pie -m32 -Wl,-melf_i386 -no-pie -Wl,--build-id=none' +grub_cflags='' +grub_cppflags=' -D_FILE_OFFSET_BITS=64' +grub_ccasflags='' +grub_ldflags='' +grub_target_strip='strip' +grub_target_nm='nm' +grub_target_ranlib='ranlib' +grub_target_objconf='' +grub_target_obj2elf='' +grub_target_img_base_ldopt='-Wl,-Ttext' +grub_target_img_ldflags='@TARGET_IMG_BASE_LDFLAGS@' + +# Version +grub_version="2.06" +grub_package="grub" +grub_package_string="GRUB 2.06-2ubuntu7.1" +grub_package_version="2.06-2ubuntu7.1" +grub_package_name="GRUB" +grub_package_bugreport="bug-grub@gnu.org" diff --git a/files/grub_unbuntu22-04_bios/i386-pc/morse.mod b/files/grub_unbuntu22-04_bios/i386-pc/morse.mod new file mode 100644 index 0000000000000000000000000000000000000000..fb5b74ebee7b440f1a265e4bf66e1a4bd0995057 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/morse.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mpi.mod b/files/grub_unbuntu22-04_bios/i386-pc/mpi.mod new file mode 100644 index 0000000000000000000000000000000000000000..6a014a9c67f8e061fdce300dfec8efd67d4f26f4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mpi.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/msdospart.mod b/files/grub_unbuntu22-04_bios/i386-pc/msdospart.mod new file mode 100644 index 0000000000000000000000000000000000000000..4e02e918bc6852f15d8efb1a47a878124c2e6126 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/msdospart.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/mul_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/mul_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..583f940e421e5aed56dc056d529a7cbe9a3d677a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/mul_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/multiboot.mod b/files/grub_unbuntu22-04_bios/i386-pc/multiboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..a74cfb1b61a504ba488839fe3faf69f6ad41945c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/multiboot.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/multiboot2.mod b/files/grub_unbuntu22-04_bios/i386-pc/multiboot2.mod new file mode 100644 index 0000000000000000000000000000000000000000..10f09757f96d7af4783b5f4b15097809324e26cc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/multiboot2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/nativedisk.mod b/files/grub_unbuntu22-04_bios/i386-pc/nativedisk.mod new file mode 100644 index 0000000000000000000000000000000000000000..ed54856457c72658c2ed2074852788b54417a6b9 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/nativedisk.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/net.mod b/files/grub_unbuntu22-04_bios/i386-pc/net.mod new file mode 100644 index 0000000000000000000000000000000000000000..f4fc7fa1b834541285199a6aa141fd5d069610b1 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/net.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/newc.mod b/files/grub_unbuntu22-04_bios/i386-pc/newc.mod new file mode 100644 index 0000000000000000000000000000000000000000..2a734b29998f34c9fb7b2fce01ed1049123a83cb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/newc.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/nilfs2.mod b/files/grub_unbuntu22-04_bios/i386-pc/nilfs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..6fa8baa3f61ca3a476c4c3a76a10c0015a31e63c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/nilfs2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/normal.mod b/files/grub_unbuntu22-04_bios/i386-pc/normal.mod new file mode 100644 index 0000000000000000000000000000000000000000..b5005c7abc1fc19c47e0f1d1395239709ab6182a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/normal.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ntfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/ntfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..9eef1a80add11909a7766a57c0f069c1ee4c5b99 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ntfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ntfscomp.mod b/files/grub_unbuntu22-04_bios/i386-pc/ntfscomp.mod new file mode 100644 index 0000000000000000000000000000000000000000..711e1a3c955d23a8ea43b44cfc34d7623374fb8f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ntfscomp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ntldr.mod b/files/grub_unbuntu22-04_bios/i386-pc/ntldr.mod new file mode 100644 index 0000000000000000000000000000000000000000..903f2d00aca4c5d554cfe3044643fdbe33b30c17 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ntldr.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/odc.mod b/files/grub_unbuntu22-04_bios/i386-pc/odc.mod new file mode 100644 index 0000000000000000000000000000000000000000..fe01e63adf1c9fbfc391a90da87d86eb074505a8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/odc.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/offsetio.mod b/files/grub_unbuntu22-04_bios/i386-pc/offsetio.mod new file mode 100644 index 0000000000000000000000000000000000000000..3c4fb847a405f0db210a48450832fb93a2ca0682 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/offsetio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ohci.mod b/files/grub_unbuntu22-04_bios/i386-pc/ohci.mod new file mode 100644 index 0000000000000000000000000000000000000000..5e88c5cf5228b6acd969613d918b58b86337dfa8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ohci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_acorn.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_acorn.mod new file mode 100644 index 0000000000000000000000000000000000000000..442dc8bfab3feff37677bc7ee6c3a4693c2da77b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_acorn.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_amiga.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_amiga.mod new file mode 100644 index 0000000000000000000000000000000000000000..4bd540375da308469e8237060fbc5a2c8ba47ffc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_amiga.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_apple.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_apple.mod new file mode 100644 index 0000000000000000000000000000000000000000..205b563be396147ea0e0f41962ea6467618d28bb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_apple.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_bsd.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_bsd.mod new file mode 100644 index 0000000000000000000000000000000000000000..a667000a75628cf8e1acf7f541b22fa9cbaff375 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_bsd.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_dfly.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_dfly.mod new file mode 100644 index 0000000000000000000000000000000000000000..e8c8326e0127d555cab6d3ba7ea775c5edce4ad5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_dfly.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_dvh.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_dvh.mod new file mode 100644 index 0000000000000000000000000000000000000000..7eedf15b5ae515020f13ce28cc12d8b2fe07f1cd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_dvh.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_gpt.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_gpt.mod new file mode 100644 index 0000000000000000000000000000000000000000..d63457704be2752dae5a6681b51d29a15189524c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_gpt.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_msdos.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_msdos.mod new file mode 100644 index 0000000000000000000000000000000000000000..b2285358c2bab786a56c302d8bc6bf4558750484 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_msdos.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_plan.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_plan.mod new file mode 100644 index 0000000000000000000000000000000000000000..abcf5ef2f9636ddc452cdebd4e8f1d78348f92e7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_plan.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_sun.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_sun.mod new file mode 100644 index 0000000000000000000000000000000000000000..e5c1fbdf1a4e1b29c5833e0f402135e4951ede8f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_sun.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/part_sunpc.mod b/files/grub_unbuntu22-04_bios/i386-pc/part_sunpc.mod new file mode 100644 index 0000000000000000000000000000000000000000..504eb85745667bfae790c3cc12ed3fabf7d379de Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/part_sunpc.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/partmap.lst b/files/grub_unbuntu22-04_bios/i386-pc/partmap.lst new file mode 100644 index 0000000000000000000000000000000000000000..761233aa26765d4bb746b00ff5a1715158c5a07e --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/partmap.lst @@ -0,0 +1,11 @@ +part_acorn +part_amiga +part_apple +part_bsd +part_dfly +part_dvh +part_gpt +part_msdos +part_plan +part_sun +part_sunpc diff --git a/files/grub_unbuntu22-04_bios/i386-pc/parttool.lst b/files/grub_unbuntu22-04_bios/i386-pc/parttool.lst new file mode 100644 index 0000000000000000000000000000000000000000..68b4b5c453c586af96c276e4f9d7620a3bc39e0f --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/parttool.lst @@ -0,0 +1 @@ +msdos: msdospart diff --git a/files/grub_unbuntu22-04_bios/i386-pc/parttool.mod b/files/grub_unbuntu22-04_bios/i386-pc/parttool.mod new file mode 100644 index 0000000000000000000000000000000000000000..748723dfc4e2120461ae7421729e87a3299fdfa4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/parttool.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/password.mod b/files/grub_unbuntu22-04_bios/i386-pc/password.mod new file mode 100644 index 0000000000000000000000000000000000000000..e2493f9ef32554561426aa1376bff268ed88464b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/password.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/password_pbkdf2.mod b/files/grub_unbuntu22-04_bios/i386-pc/password_pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..09d54b7fd124ff3879278bf007e1d4f21516515c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/password_pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pata.mod b/files/grub_unbuntu22-04_bios/i386-pc/pata.mod new file mode 100644 index 0000000000000000000000000000000000000000..65293d7a9fba11ed1568f93841e594c37c3408ef Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pata.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2.mod b/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2.mod new file mode 100644 index 0000000000000000000000000000000000000000..59559caa7c1faec0fa2ca4812ecca123d34cd106 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..eb96f20543872a3fc8cc3985cff9caf62da477af Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pbkdf2_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pci.mod b/files/grub_unbuntu22-04_bios/i386-pc/pci.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e2c7489c308948f42bb382b75821b2343be6b14 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pcidump.mod b/files/grub_unbuntu22-04_bios/i386-pc/pcidump.mod new file mode 100644 index 0000000000000000000000000000000000000000..463cc4cd269c206eee3a87acfb4170b774559492 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pcidump.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pgp.mod b/files/grub_unbuntu22-04_bios/i386-pc/pgp.mod new file mode 100644 index 0000000000000000000000000000000000000000..41b3c38215c8efb411d67ebf50b38bafb7d6246c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pgp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/plan9.mod b/files/grub_unbuntu22-04_bios/i386-pc/plan9.mod new file mode 100644 index 0000000000000000000000000000000000000000..5822d47c6633c42e0d5cca832d6aa1dc09100fda Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/plan9.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/play.mod b/files/grub_unbuntu22-04_bios/i386-pc/play.mod new file mode 100644 index 0000000000000000000000000000000000000000..196e4afa5184671d63ec8fe780871cbdc6aaccae Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/play.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/png.mod b/files/grub_unbuntu22-04_bios/i386-pc/png.mod new file mode 100644 index 0000000000000000000000000000000000000000..60e0e00ea602de163ee953f310ed8acc170eadae Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/png.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/priority_queue.mod b/files/grub_unbuntu22-04_bios/i386-pc/priority_queue.mod new file mode 100644 index 0000000000000000000000000000000000000000..4096cdc92893eee49a5c46fc1b3494ef0be1c3b5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/priority_queue.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/probe.mod b/files/grub_unbuntu22-04_bios/i386-pc/probe.mod new file mode 100644 index 0000000000000000000000000000000000000000..917e75e47f5dd3a3ebbb85eb2d27b188569a5558 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/probe.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/procfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/procfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..12fed3f3d8ab644de5bad36cd0482f9c9ddcb959 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/procfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/progress.mod b/files/grub_unbuntu22-04_bios/i386-pc/progress.mod new file mode 100644 index 0000000000000000000000000000000000000000..38e50c745d00519ea51b853c80472cb8528f2495 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/progress.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pxe.mod b/files/grub_unbuntu22-04_bios/i386-pc/pxe.mod new file mode 100644 index 0000000000000000000000000000000000000000..ced69e39974eb33ee8c12e80f5609327f3b1fa0c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pxe.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/pxechain.mod b/files/grub_unbuntu22-04_bios/i386-pc/pxechain.mod new file mode 100644 index 0000000000000000000000000000000000000000..9a860f1ab237e0dc044978aab796abf6bdca2181 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/pxechain.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/raid5rec.mod b/files/grub_unbuntu22-04_bios/i386-pc/raid5rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..b6bf68d324725fb115bb9295e9f61ae065ad8e5a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/raid5rec.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/raid6rec.mod b/files/grub_unbuntu22-04_bios/i386-pc/raid6rec.mod new file mode 100644 index 0000000000000000000000000000000000000000..5f00bafc278b46b8f3c23f6e78f48fdc46734309 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/raid6rec.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/random.mod b/files/grub_unbuntu22-04_bios/i386-pc/random.mod new file mode 100644 index 0000000000000000000000000000000000000000..c094424e53b0dbf93d4b84c7f646af8fcdbaa52f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/random.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/rdmsr.mod b/files/grub_unbuntu22-04_bios/i386-pc/rdmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..9eed52ed6ed4a82d5b54c74faf6a72e9cbfe3ca1 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/rdmsr.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/read.mod b/files/grub_unbuntu22-04_bios/i386-pc/read.mod new file mode 100644 index 0000000000000000000000000000000000000000..dce3b5f45e0a20eb915878bf8eb5790db1200aec Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/read.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/reboot.mod b/files/grub_unbuntu22-04_bios/i386-pc/reboot.mod new file mode 100644 index 0000000000000000000000000000000000000000..05217bc7a66af046f37cd9910572708918e2d036 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/reboot.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/regexp.mod b/files/grub_unbuntu22-04_bios/i386-pc/regexp.mod new file mode 100644 index 0000000000000000000000000000000000000000..b9bdcfb06959a0b5430b44b43a095417913620f0 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/regexp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/reiserfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/reiserfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4a49b50fa89842ce702a4d0af5481023ff3538fa Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/reiserfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/relocator.mod b/files/grub_unbuntu22-04_bios/i386-pc/relocator.mod new file mode 100644 index 0000000000000000000000000000000000000000..f93f5ca976677cc88fd0bebd586a378f5e818f42 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/relocator.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/romfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/romfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6fd2cd2ee2d4ab35e0d5de0410c5bd5aca87da5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/romfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/scsi.mod b/files/grub_unbuntu22-04_bios/i386-pc/scsi.mod new file mode 100644 index 0000000000000000000000000000000000000000..cee3bd02578139321f2e8fac73e33f581198aedb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/scsi.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/search.mod b/files/grub_unbuntu22-04_bios/i386-pc/search.mod new file mode 100644 index 0000000000000000000000000000000000000000..14d31d6a39ac35068d436951230affed9c2c4fec Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/search.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/search_fs_file.mod b/files/grub_unbuntu22-04_bios/i386-pc/search_fs_file.mod new file mode 100644 index 0000000000000000000000000000000000000000..40ceb19208a52babce20e7eb84fdb9dad509054c Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/search_fs_file.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/search_fs_uuid.mod b/files/grub_unbuntu22-04_bios/i386-pc/search_fs_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..63ae3d4081c037a03aba20be23e2cc6af626169e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/search_fs_uuid.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/search_label.mod b/files/grub_unbuntu22-04_bios/i386-pc/search_label.mod new file mode 100644 index 0000000000000000000000000000000000000000..e50e9c08eea1ff1d71705f044a03168170768246 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/search_label.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/sendkey.mod b/files/grub_unbuntu22-04_bios/i386-pc/sendkey.mod new file mode 100644 index 0000000000000000000000000000000000000000..05f8f0c130015d4c0ffe48f3847097e19da8cf13 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/sendkey.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/serial.mod b/files/grub_unbuntu22-04_bios/i386-pc/serial.mod new file mode 100644 index 0000000000000000000000000000000000000000..fa823322048788c753d5cc12880c516c51fc1255 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/serial.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/setjmp.mod b/files/grub_unbuntu22-04_bios/i386-pc/setjmp.mod new file mode 100644 index 0000000000000000000000000000000000000000..9ede5cba8972c8904cfef0eae882203d64bfddef Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/setjmp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/setjmp_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/setjmp_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a7c93e7499e6b365cdac76a5bb4186960ce51b6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/setjmp_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/setpci.mod b/files/grub_unbuntu22-04_bios/i386-pc/setpci.mod new file mode 100644 index 0000000000000000000000000000000000000000..a5682ed6f3a34a77beed32b2a16bd20139a11417 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/setpci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/sfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/sfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..a9813464a5c0efeec21b5c34d9c2b76179f3033f Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/sfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/shift_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/shift_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..b35f62867b493d3d4c73003df5b0672ebde78aef Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/shift_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/signature_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/signature_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..67b20a872f4ffe22b59c510dff079899aab1e002 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/signature_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/sleep.mod b/files/grub_unbuntu22-04_bios/i386-pc/sleep.mod new file mode 100644 index 0000000000000000000000000000000000000000..d4fe8da60c39bdaa107ffcd93c7fe18a370b08b6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/sleep.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/sleep_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/sleep_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..a939c3c16846f177e33b144029975bfb21451585 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/sleep_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/smbios.mod b/files/grub_unbuntu22-04_bios/i386-pc/smbios.mod new file mode 100644 index 0000000000000000000000000000000000000000..a28d0766cedbef578301827f43497b3098238cdd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/smbios.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/spkmodem.mod b/files/grub_unbuntu22-04_bios/i386-pc/spkmodem.mod new file mode 100644 index 0000000000000000000000000000000000000000..fac95db86927cd1a9ef9b268f81dec954b15da08 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/spkmodem.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/squash4.mod b/files/grub_unbuntu22-04_bios/i386-pc/squash4.mod new file mode 100644 index 0000000000000000000000000000000000000000..44c1f72ac2d7ad0bb447f67c3985f427d21eed05 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/squash4.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/strtoull_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/strtoull_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..9c3c2790fc3aad1eb47222c40c9ec14691f4108b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/strtoull_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/syslinuxcfg.mod b/files/grub_unbuntu22-04_bios/i386-pc/syslinuxcfg.mod new file mode 100644 index 0000000000000000000000000000000000000000..3e2d7657fe447a11250123f721a0faada20c3c05 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/syslinuxcfg.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/tar.mod b/files/grub_unbuntu22-04_bios/i386-pc/tar.mod new file mode 100644 index 0000000000000000000000000000000000000000..32124e6b72d6ed8d5dfd6827d28d599aef52cdc7 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/tar.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/terminal.lst b/files/grub_unbuntu22-04_bios/i386-pc/terminal.lst new file mode 100644 index 0000000000000000000000000000000000000000..2cb224c4d138da131ea79120bc32a50f275c35fa --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/terminal.lst @@ -0,0 +1,11 @@ +iat_keyboard: at_keyboard +iserial: serial +iserial_*: serial +oaudio: morse +ocbmemc: cbmemc +ogfxterm: gfxterm +omda_text: mda_text +oserial: serial +oserial_*: serial +ospkmodem: spkmodem +ovga_text: vga_text diff --git a/files/grub_unbuntu22-04_bios/i386-pc/terminal.mod b/files/grub_unbuntu22-04_bios/i386-pc/terminal.mod new file mode 100644 index 0000000000000000000000000000000000000000..da7fe467f2b3d756ef876cc66ed01bdb8756117d Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/terminal.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/terminfo.mod b/files/grub_unbuntu22-04_bios/i386-pc/terminfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..d530ab65de3d4835d02b83979a6b4ae58410f6ea Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/terminfo.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/test.mod b/files/grub_unbuntu22-04_bios/i386-pc/test.mod new file mode 100644 index 0000000000000000000000000000000000000000..834ea7d65ba10a9905d55a32f2f59bf8cf173743 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/test_blockarg.mod b/files/grub_unbuntu22-04_bios/i386-pc/test_blockarg.mod new file mode 100644 index 0000000000000000000000000000000000000000..9416c16a6e99a78568ea8c4b7b48b3153d1291ca Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/test_blockarg.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/testload.mod b/files/grub_unbuntu22-04_bios/i386-pc/testload.mod new file mode 100644 index 0000000000000000000000000000000000000000..816238139d8ba562584753ed75aa290d5c63477e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/testload.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/testspeed.mod b/files/grub_unbuntu22-04_bios/i386-pc/testspeed.mod new file mode 100644 index 0000000000000000000000000000000000000000..af34db19cfe00cc5cf10428657b4a839cde286aa Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/testspeed.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/tftp.mod b/files/grub_unbuntu22-04_bios/i386-pc/tftp.mod new file mode 100644 index 0000000000000000000000000000000000000000..0e9103e628fe6060a336a4b69aedd0d2b6bab4a2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/tftp.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/tga.mod b/files/grub_unbuntu22-04_bios/i386-pc/tga.mod new file mode 100644 index 0000000000000000000000000000000000000000..793c1a7a1662d23ed7d0853293c8eb140d2ef110 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/tga.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/time.mod b/files/grub_unbuntu22-04_bios/i386-pc/time.mod new file mode 100644 index 0000000000000000000000000000000000000000..69d562dbff36839c6836adb87eed46d51d8c9a48 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/time.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/tr.mod b/files/grub_unbuntu22-04_bios/i386-pc/tr.mod new file mode 100644 index 0000000000000000000000000000000000000000..c16c25c494bb3aa109a1183e77e0215f7308f7c2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/tr.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/trig.mod b/files/grub_unbuntu22-04_bios/i386-pc/trig.mod new file mode 100644 index 0000000000000000000000000000000000000000..47166ce6255c8b957d6114c75a711acc3e4c7bea Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/trig.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/true.mod b/files/grub_unbuntu22-04_bios/i386-pc/true.mod new file mode 100644 index 0000000000000000000000000000000000000000..e74d756f101a5924c2b1f76e62d43e963c025af2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/true.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/truecrypt.mod b/files/grub_unbuntu22-04_bios/i386-pc/truecrypt.mod new file mode 100644 index 0000000000000000000000000000000000000000..8ff623d0d8ccf506279b3c4f6907949c6ffb714e Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/truecrypt.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/udf.mod b/files/grub_unbuntu22-04_bios/i386-pc/udf.mod new file mode 100644 index 0000000000000000000000000000000000000000..37a975a3e06ebfa7b8490f4fc73717ef5d8aeabd Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/udf.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ufs1.mod b/files/grub_unbuntu22-04_bios/i386-pc/ufs1.mod new file mode 100644 index 0000000000000000000000000000000000000000..31bc466a490772c1e3fca6403e7639dacc67b7e3 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ufs1.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ufs1_be.mod b/files/grub_unbuntu22-04_bios/i386-pc/ufs1_be.mod new file mode 100644 index 0000000000000000000000000000000000000000..947f09af686e57536506728cdd3f71fc64f6f7bb Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ufs1_be.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/ufs2.mod b/files/grub_unbuntu22-04_bios/i386-pc/ufs2.mod new file mode 100644 index 0000000000000000000000000000000000000000..40b59c3b9b15ecc114189d9349ef150f6bb20df9 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/ufs2.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/uhci.mod b/files/grub_unbuntu22-04_bios/i386-pc/uhci.mod new file mode 100644 index 0000000000000000000000000000000000000000..a53863877cd388e305a991ccaf3ef790cb7c8840 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/uhci.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usb.mod b/files/grub_unbuntu22-04_bios/i386-pc/usb.mod new file mode 100644 index 0000000000000000000000000000000000000000..7ebfda2b7e11dd4bf748069a31f64a3423b19103 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usb.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usb_keyboard.mod b/files/grub_unbuntu22-04_bios/i386-pc/usb_keyboard.mod new file mode 100644 index 0000000000000000000000000000000000000000..90ad27ab2596c4b52d62d0605b8176bede39adae Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usb_keyboard.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbms.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbms.mod new file mode 100644 index 0000000000000000000000000000000000000000..e6e9441a61d25916a57012914fb16d347e803388 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbms.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbserial_common.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_common.mod new file mode 100644 index 0000000000000000000000000000000000000000..b7202a0f0fe47cd5acaea1767583ab679945935d Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_common.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbserial_ftdi.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_ftdi.mod new file mode 100644 index 0000000000000000000000000000000000000000..3fb068db1aaa3247ab0e53279a346609fedee23a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_ftdi.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbserial_pl2303.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_pl2303.mod new file mode 100644 index 0000000000000000000000000000000000000000..ce31023dfda9609711facd4ea4dc1d0d7b520cf8 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_pl2303.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbserial_usbdebug.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_usbdebug.mod new file mode 100644 index 0000000000000000000000000000000000000000..5685e8b1467d7c349585fae93a891a1216bee379 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbserial_usbdebug.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/usbtest.mod b/files/grub_unbuntu22-04_bios/i386-pc/usbtest.mod new file mode 100644 index 0000000000000000000000000000000000000000..6602eda89d55152f49583a79474db299c047642b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/usbtest.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/vbe.mod b/files/grub_unbuntu22-04_bios/i386-pc/vbe.mod new file mode 100644 index 0000000000000000000000000000000000000000..5266ae3e42378e838fd393eba6ff2b7fb6fc5db5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/vbe.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/verifiers.mod b/files/grub_unbuntu22-04_bios/i386-pc/verifiers.mod new file mode 100644 index 0000000000000000000000000000000000000000..989311a7feb2ba8272aedaf58693bfa9e560f0f5 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/verifiers.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/vga.mod b/files/grub_unbuntu22-04_bios/i386-pc/vga.mod new file mode 100644 index 0000000000000000000000000000000000000000..0a11b5209fda1b22aaa28c884953b4d5ee3a00e4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/vga.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/vga_text.mod b/files/grub_unbuntu22-04_bios/i386-pc/vga_text.mod new file mode 100644 index 0000000000000000000000000000000000000000..0b6c46a443e6b19705fc32724b05d8d6fa7f4ddc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/vga_text.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video.lst b/files/grub_unbuntu22-04_bios/i386-pc/video.lst new file mode 100644 index 0000000000000000000000000000000000000000..6ca853e651771c2197dbb1b65d349277a529c795 --- /dev/null +++ b/files/grub_unbuntu22-04_bios/i386-pc/video.lst @@ -0,0 +1,4 @@ +vbe +vga +video_bochs +video_cirrus diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video.mod b/files/grub_unbuntu22-04_bios/i386-pc/video.mod new file mode 100644 index 0000000000000000000000000000000000000000..ce2df48bd64f1de0e09ccace09422371c9181176 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/video.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video_bochs.mod b/files/grub_unbuntu22-04_bios/i386-pc/video_bochs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4894887fb6b66d868840269c0d7200ae7952a72b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/video_bochs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video_cirrus.mod b/files/grub_unbuntu22-04_bios/i386-pc/video_cirrus.mod new file mode 100644 index 0000000000000000000000000000000000000000..bb7ed5eb4956fd96377d0f1a472bb918d05612f2 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/video_cirrus.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video_colors.mod b/files/grub_unbuntu22-04_bios/i386-pc/video_colors.mod new file mode 100644 index 0000000000000000000000000000000000000000..d403f49336d02122c8bb77d87d30960f3bcc20db Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/video_colors.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/video_fb.mod b/files/grub_unbuntu22-04_bios/i386-pc/video_fb.mod new file mode 100644 index 0000000000000000000000000000000000000000..b1440bacb9dcf17fadfb74ce051759828846c373 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/video_fb.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/videoinfo.mod b/files/grub_unbuntu22-04_bios/i386-pc/videoinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..d46d204d225b3031c60b475b59722c558c3e3581 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/videoinfo.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/videotest.mod b/files/grub_unbuntu22-04_bios/i386-pc/videotest.mod new file mode 100644 index 0000000000000000000000000000000000000000..22298462a16741a529d6ed31c8ceaefd2663d5d6 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/videotest.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/videotest_checksum.mod b/files/grub_unbuntu22-04_bios/i386-pc/videotest_checksum.mod new file mode 100644 index 0000000000000000000000000000000000000000..ad5c01de8f4ff8fe1ac80c5a0cbc02424de1d776 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/videotest_checksum.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/wrmsr.mod b/files/grub_unbuntu22-04_bios/i386-pc/wrmsr.mod new file mode 100644 index 0000000000000000000000000000000000000000..cfff31c23312e3b2c09ae18afa0fb0e39abea6c4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/wrmsr.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/xfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/xfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..4765dd10c443db7cef62cbf07d5c509d39e0b2c4 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/xfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/xnu.mod b/files/grub_unbuntu22-04_bios/i386-pc/xnu.mod new file mode 100644 index 0000000000000000000000000000000000000000..04a49223c6d41c64223960d54be96e9ac9b53a21 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/xnu.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid.mod b/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid.mod new file mode 100644 index 0000000000000000000000000000000000000000..45a956f3ba7a84505775fb9c98ac1cc7cf2cb411 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid_test.mod b/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid_test.mod new file mode 100644 index 0000000000000000000000000000000000000000..05ed8ae9abf841bf57ae2a8bcd1b2b0bd9da7088 Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/xnu_uuid_test.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/xzio.mod b/files/grub_unbuntu22-04_bios/i386-pc/xzio.mod new file mode 100644 index 0000000000000000000000000000000000000000..8ac81189ed3cbada396f619be5998a389418a3ec Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/xzio.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/zfs.mod b/files/grub_unbuntu22-04_bios/i386-pc/zfs.mod new file mode 100644 index 0000000000000000000000000000000000000000..6fa839eaf67c25c67b202f791c92900b9714f6dc Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/zfs.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/zfscrypt.mod b/files/grub_unbuntu22-04_bios/i386-pc/zfscrypt.mod new file mode 100644 index 0000000000000000000000000000000000000000..c3f98de29c7a7a37665cd9d0311d05ba1a27491b Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/zfscrypt.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/zfsinfo.mod b/files/grub_unbuntu22-04_bios/i386-pc/zfsinfo.mod new file mode 100644 index 0000000000000000000000000000000000000000..0d7de667cd4344cfcfe67db56b2a59aa5ee652be Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/zfsinfo.mod differ diff --git a/files/grub_unbuntu22-04_bios/i386-pc/zstd.mod b/files/grub_unbuntu22-04_bios/i386-pc/zstd.mod new file mode 100644 index 0000000000000000000000000000000000000000..e8790cc3dc38b45e71cd524b4ff512c5cb40215a Binary files /dev/null and b/files/grub_unbuntu22-04_bios/i386-pc/zstd.mod differ diff --git a/tasks/system-rescue-cd.yml b/tasks/system-rescue-cd.yml new file mode 100644 index 0000000000000000000000000000000000000000..50596e26ab2df769be3ff915b894bd3fba421d06 --- /dev/null +++ b/tasks/system-rescue-cd.yml @@ -0,0 +1,83 @@ +--- +- name: download system-rescue-cd iso + get_url: + url: "{{ autoinstall_sysrescue_iso_url }}" + dest: "/tmp/{{ autoinstall_sysrescue_iso_file }}" + force: true + +- name: create system-rescue-cd is moutnpoint + file: + path: /mnt/sysrescucd + state: directory + +- name: mount system-rescue-cd iso + mount: + src: "/tmp/{{ autoinstall_sysrescue_iso_file }}" + path: /mnt/sysrescucd + fstype: iso9660 + state: mounted + +- name: create folders for system-rescue-cd components in tftp + file: + path: "{{ tftp_root }}/images/sysrescue-{{ autoinstall_sysrescue_version }}" + state: directory + +- name: extract required system-rescue-cd components for TFTP + copy: + remote_src: true + src: "/mnt/sysrescucd/sysresccd/{{ item }}" + dest: "{{ tftp_root }}/images/sysrescue-{{ autoinstall_sysrescue_version }}/" + loop: + - /boot/amd_ucode.img + - /boot/intel_ucode.img + - /boot/x86_64/sysresccd.img + - /boot/x86_64/vmlinuz + +- name: create folders for system-rescue-cd components in HTTP + file: + path: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}" + state: directory + +- name: extract required system-rescue-cd components for HTTP + copy: + remote_src: true + src: "/mnt/sysrescucd/sysresccd" + dest: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}" + +- name: unmount system-rescue-cd iso + mount: + src: "/tmp/{{ autoinstall_sysrescue_iso_file }}" + path: /mnt/sysrescucd + fstype: iso9660 + state: unmounted + +- name: create autorun script repo for Ubuntu installation + file: + path: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/ubuntu-install" + state: directory + +- name: setup autorun script for Ubuntu deployment + template: + src: "sysrecue-{{ autoinstall_sysrescue_version }}-autorun-ubuntu.j2" + dest: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/ubuntu-install/autorun0" + owner: root + group: root + mode: 0755 + +- name: copy extra templates for autorun + template: + src: "{{ item }}.j2" + dest: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/" + owner: root + group: nginx + mode: 0644 + with_items: "{{ autoinstall_sysrescue_autorun_templates }}" + +- name: copy extra files for autorun + copy: + src: "{{ item }}" + dest: "{{ kickstart_root }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/" + owner: root + group: nginx + mode: 0644 + with_items: "{{ autoinstall_sysrescue_autorun_files }}" diff --git a/templates/grub-menu/BIOS-ubuntu.j2 b/templates/grub-menu/BIOS-ubuntu.j2 new file mode 100644 index 0000000000000000000000000000000000000000..b0fec0420e59c4de9cd7a3ad4c6abf033c01ceab --- /dev/null +++ b/templates/grub-menu/BIOS-ubuntu.j2 @@ -0,0 +1,3 @@ +linux /images/sysrescue-{{ autoinstall_sysrescue_version }}/vmlinuz archisobasedir=sysrescue-10.02/sysresccd ip=dhcp archiso_http_srv=http://{{ kickstart_ip }}/ ar_source=http://{{ kickstart_ip }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/ubuntu-install/ ar_suffixes=0 ar_nowait ar_ignorefail ar_nodel ar_attempts rootpass=ICSdeploy#1 nofirewall autoinstall_srv={{ kickstart_ip }} +initrd /images/sysrescue-{{ autoinstall_sysrescue_version }}/intel_ucode.img /images/sysrescue-{{ autoinstall_sysrescue_version }}/amd_ucode.img /images/sysrescue-{{ autoinstall_sysrescue_version }}/sysresccd.img + diff --git a/templates/grub-menu/EFI-ubuntu.j2 b/templates/grub-menu/EFI-ubuntu.j2 new file mode 100644 index 0000000000000000000000000000000000000000..a8c9ead07f0292929ef7c8d8511305c488ff0228 --- /dev/null +++ b/templates/grub-menu/EFI-ubuntu.j2 @@ -0,0 +1,3 @@ +linuxefi /images/sysrescue-{{ autoinstall_sysrescue_version }}/vmlinuz archisobasedir=sysrescue-10.02/sysresccd ip=dhcp archiso_http_srv=http://{{ kickstart_ip }}/ ar_source=http://{{ kickstart_ip }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/ubuntu-install/ ar_suffixes=0 ar_nowait ar_ignorefail ar_nodel ar_attempts rootpass=ICSdeploy#1 nofirewall autoinstall_srv={{ kickstart_ip }} +initrdefi /images/sysrescue-{{ autoinstall_sysrescue_version }}/intel_ucode.img /images/sysrescue-{{ autoinstall_sysrescue_version }}/amd_ucode.img /images/sysrescue-{{ autoinstall_sysrescue_version }}/sysresccd.img + diff --git a/templates/sysrecue-10.02-autorun-ubuntu.j2 b/templates/sysrecue-10.02-autorun-ubuntu.j2 new file mode 100644 index 0000000000000000000000000000000000000000..f0f34167bf606428d33362859b3ea3ce8a96d2be --- /dev/null +++ b/templates/sysrecue-10.02-autorun-ubuntu.j2 @@ -0,0 +1,50 @@ +#!/bin/bash +# {{ ansible_managed }} + +echo `hostname` >> /tmp/autorun.log +useradd -d /home/csi -m -s /bin/bash csi +mkdir /home/csi/.ssh +chmod 700 /home/csi/.ssh + +echo 'ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAF/XCunlPgvj8LdgcFP2iJ8pe/oPfs68ANxYLoHfgNh8xzBkeqaIDfQIhzT1nlZDeaMwqEXI5Q85w2HtOKZSnaDGAHs4SCV1iFtvZyUnOoevAGHF5uyOmjyxveHAR/psvMxVBE/O403PsVdcfpQfVGEwV7se8bCa1S7YiQtN/bLigpgwg== csi-deloy-key' > /home/csi/.ssh/authorized_keys + +chmod 600 /home/csi/.ssh/authorized_keys +chown -R csi. /home/csi/ +chown -R csi. /home/csi/.ssh + +# Setup SSH and sudo +sed -i 's/AllowUsers root/AllowUsers root csi/g' /etc/ssh/sshd_config +sed -i 's/#PubkeyAuthentication yes/PubkeyAuthentication yes/g' /etc/ssh/sshd_config +echo "Match User csi" >> /etc/ssh/sshd_config +echo " PasswordAuthentication no" >> /etc/ssh/sshd_config +systemctl restart sshd + + +echo 'csi ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/csi + +# Packages +## debootstrap +echo "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/sbin:/usr/sbin:/bin:/usr/share/sysrescue/bin/:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/sbin:/usr/sbin:/bin:/usr/share/sysrescue/bin/" >> /etc/environment + +wget -O /tmp/debootstrap-1.0.126-1-any.pkg.tar.zst http://{{ kickstart_ip }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/debootstrap-1.0.126-1-any.pkg.tar.zst +zstd -d /tmp/debootstrap-1.0.126-1-any.pkg.tar.zst +tar -C / -xvf /tmp/debootstrap-1.0.126-1-any.pkg.tar + +## AWX + +### setup repo to speed up pkg install + +sed -i 's/##################/ParallelDownloads = 10\n\n##################/g' /etc/pacman.conf +echo yes | pacman -Sy --noconfirm python-setuptools +echo yes | pacman -Sy --noconfirm awxkit + +## Ansible call-back for deploy-ubuntu-live + +MAIN_IF=$(ip route list |grep default | awk -F dev '{print $2 }' |awk '{print $1}') +NET_HOSTNAME=`host $(ip add ls dev $MAIN_IF |grep 'inet ' |awk '{print $2}' |cut -d / -f1 ) |awk '{print $NF}' |sed -e 's/\.$//g'` + +wget -O /tmp/awxconf http://{{ kickstart_ip }}/sysrescue-{{ autoinstall_sysrescue_version }}/autorun_scripts/awx_cli_config +source /tmp/awxconf + +echo "Installing Ubuntu: deploy-ubuntu-live" +/usr/bin/awx job_template launch -k --limit $NET_HOSTNAME --monitor --no-input 576