mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-08-28 08:21:14 +00:00
experimental support for loongson mips64el uefi
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -543,7 +543,7 @@ function uefi_linux_menu_func {
|
||||
loopback loop "$1$2"
|
||||
fi
|
||||
|
||||
vt_load_cpio ${vtoy_path}/ventoy.cpio "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
|
||||
vt_linux_clear_initrd
|
||||
|
||||
@@ -645,10 +645,13 @@ function uefi_linux_menu_func {
|
||||
|
||||
if [ -n "$vtoy_chain_mem_addr" ]; then
|
||||
ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
|
||||
ventoy_cli_console
|
||||
chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi fallback env_param=${env_param} isoefi=${LoadIsoEfiDriver} FirstTry=${FirstTryBootFile} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
|
||||
boot
|
||||
ventoy_cli_console
|
||||
|
||||
if [ "$VTOY_EFI_ARCH" != "mips" ]; then
|
||||
chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi fallback env_param=${env_param} isoefi=${LoadIsoEfiDriver} FirstTry=${FirstTryBootFile} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
|
||||
boot
|
||||
fi
|
||||
|
||||
# fallback
|
||||
set vtback_root=$root
|
||||
vt_push_last_entry
|
||||
@@ -659,22 +662,28 @@ function uefi_linux_menu_func {
|
||||
vt_set_boot_opt rdinit=/vtoy/vtoy
|
||||
|
||||
set root=(loop)
|
||||
set vtback_cfg_find=0
|
||||
for cfg in "/boot/grub/grub.cfg" "/EFI/BOOT/grub.cfg" "/EFI/debian/grub.cfg" "EFI/boot/grub.cfg" "efi/boot/grub.cfg" "/grub/grub.cfg" "EFI/BOOT/BOOTX64.conf"; do
|
||||
if [ -e "$cfg" ]; then
|
||||
set vtback_cfg_find=1
|
||||
configfile "$cfg"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$vtback_cfg_find" = "0" ]; then
|
||||
echo " "
|
||||
echo "No bootfile found for UEFI!"
|
||||
echo "Maybe the image does not support $VTOY_EFI_ARCH UEFI"
|
||||
echo " "
|
||||
sleep 30
|
||||
fi
|
||||
|
||||
vt_unset_boot_opt
|
||||
set root=$vtback_root
|
||||
set theme=$vtback_theme
|
||||
vt_pop_last_entry
|
||||
ventoy_gui_console
|
||||
|
||||
echo "No bootfile found for UEFI!"
|
||||
echo "Maybe the image does not support $VTOY_EFI_ARCH UEFI"
|
||||
echo " "
|
||||
else
|
||||
echo "chain empty failed"
|
||||
ventoy_pause
|
||||
@@ -827,7 +836,7 @@ function legacy_linux_menu_func {
|
||||
loopback loop "$1$2"
|
||||
fi
|
||||
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
|
||||
vt_linux_clear_initrd
|
||||
|
||||
@@ -964,7 +973,7 @@ function iso_endless_os_proc {
|
||||
loopback loop "${1}${2}"
|
||||
vt_img_sector "${1}${2}"
|
||||
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio "$1" "$2" noinit
|
||||
|
||||
ventoy_debug_pause
|
||||
@@ -990,6 +999,8 @@ function ventoy_iso_busybox_ver {
|
||||
|
||||
if [ "$VTOY_EFI_ARCH" = "aa64" ]; then
|
||||
set ventoy_busybox_ver=a64
|
||||
elif [ "$VTOY_EFI_ARCH" = "mips" ]; then
|
||||
set ventoy_busybox_ver=m64
|
||||
else
|
||||
set ventoy_busybox_ver=32
|
||||
|
||||
@@ -1303,7 +1314,7 @@ function vtoy_unsupport_menuentry {
|
||||
|
||||
|
||||
function ventoy_img_easyos {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
loopback easysfs (vtimghd,1)/easy.sfs
|
||||
@@ -1329,7 +1340,7 @@ function ventoy_img_easyos {
|
||||
}
|
||||
|
||||
function ventoy_img_volumio {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
ventoy_debug_pause
|
||||
@@ -1347,7 +1358,7 @@ function ventoy_img_volumio {
|
||||
function ventoy_img_openelec {
|
||||
elec_ver=$1
|
||||
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
loopback vtloopex $vtoy_efi_part/ventoy/vtloopex.cpio
|
||||
@@ -1369,7 +1380,7 @@ function ventoy_img_openelec {
|
||||
|
||||
|
||||
function ventoy_img_freedombox {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
vt_get_lib_module_ver (vtimghd,1) /lib/modules/ vt_module_ver
|
||||
@@ -1390,7 +1401,7 @@ function ventoy_img_freedombox {
|
||||
}
|
||||
|
||||
function ventoy_img_paldo {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
ventoy_debug_pause
|
||||
@@ -1412,7 +1423,7 @@ function ventoy_img_paldo {
|
||||
}
|
||||
|
||||
function ventoy_img_ubos {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
vt_get_lib_module_ver (vtimghd,3) /lib/modules/ vt_module_ver
|
||||
@@ -1436,7 +1447,7 @@ function ventoy_img_ubos {
|
||||
}
|
||||
|
||||
function ventoy_img_recalbox {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
ventoy_debug_pause
|
||||
@@ -1453,7 +1464,7 @@ function ventoy_img_recalbox {
|
||||
}
|
||||
|
||||
function ventoy_img_batocera {
|
||||
vt_load_cpio $vtoy_path/ventoy.cpio "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
|
||||
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
|
||||
|
||||
ventoy_debug_pause
|
||||
@@ -1601,6 +1612,9 @@ else
|
||||
elif [ "$grub_cpu" = "arm64" ]; then
|
||||
set VTOY_EFI_ARCH=aa64
|
||||
set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION AA64 www.ventoy.net"
|
||||
elif [ "$grub_cpu" = "mips64el" ]; then
|
||||
set VTOY_EFI_ARCH=mips
|
||||
set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION MIPS www.ventoy.net"
|
||||
else
|
||||
set VTOY_EFI_ARCH=x64
|
||||
set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION UEFI www.ventoy.net"
|
||||
|
Binary file not shown.
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/adler32.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/adler32.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/affs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/affs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/afs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/afs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/archelp.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/archelp.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/bfs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/bfs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/blscfg.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/blscfg.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/bswap_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/bswap_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/btrfs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/btrfs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cbfs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cbfs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cmdline_cat_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cmdline_cat_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cmp.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cmp.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cmp_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cmp_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/command.lst
Normal file
BIN
INSTALL/grub/mips64el-efi/command.lst
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cpio.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cpio.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cpio_be.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cpio_be.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/crc64.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/crc64.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/crypto.lst
Normal file
BIN
INSTALL/grub/mips64el-efi/crypto.lst
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/cryptodisk.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/cryptodisk.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/ctz_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/ctz_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/date.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/date.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/datehook.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/datehook.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/disk.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/disk.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/div.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/div.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/div_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/div_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/dm_nv.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/dm_nv.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/efinet.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/efinet.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/elf.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/elf.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/eval.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/eval.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/exfctest.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/exfctest.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/f2fs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/f2fs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/fdt.lst
Normal file
BIN
INSTALL/grub/mips64el-efi/fdt.lst
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/file.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/file.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/fs.lst
Normal file
BIN
INSTALL/grub/mips64el-efi/fs.lst
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/functional_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/functional_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_arcfour.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_arcfour.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_blowfish.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_blowfish.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_camellia.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_camellia.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_cast5.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_cast5.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_crc.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_crc.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_des.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_des.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_dsa.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_dsa.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_idea.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_idea.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_md4.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_md4.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_rfc2268.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_rfc2268.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_rijndael.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_rijndael.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_rmd160.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_rmd160.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_rsa.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_rsa.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_seed.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_seed.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_serpent.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_serpent.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_sha1.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_sha1.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_sha256.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_sha256.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_tiger.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_tiger.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_twofish.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_twofish.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gcry_whirlpool.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gcry_whirlpool.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/geli.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/geli.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gfxterm_menu.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gfxterm_menu.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/gptsync.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/gptsync.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/hello.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/hello.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/help.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/help.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/hexdump.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/hexdump.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/hfs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/hfs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/hfspluscomp.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/hfspluscomp.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/jfs.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/jfs.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/keystatus.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/keystatus.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/ldm.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/ldm.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/loadenv.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/loadenv.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lsacpi.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lsacpi.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lsefi.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lsefi.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lsefimmap.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lsefimmap.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lsefisystab.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lsefisystab.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lsmmap.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lsmmap.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lssal.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lssal.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/luks.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/luks.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/lvm.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/lvm.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/macbless.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/macbless.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/macho.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/macho.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/mdraid09.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/mdraid09.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/mdraid09_be.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/mdraid09_be.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/mdraid1x.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/mdraid1x.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/memdisk.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/memdisk.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/memrw.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/memrw.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix2.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix2.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix2_be.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix2_be.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix3.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix3.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix3_be.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix3_be.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/minix_be.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/minix_be.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/moddep.lst
Normal file
BIN
INSTALL/grub/mips64el-efi/moddep.lst
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/mpi.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/mpi.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/msdospart.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/msdospart.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/mul_test.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/mul_test.mod
Normal file
Binary file not shown.
BIN
INSTALL/grub/mips64el-efi/nilfs2.mod
Normal file
BIN
INSTALL/grub/mips64el-efi/nilfs2.mod
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user