misc update

This commit is contained in:
longpanda
2021-02-07 01:01:04 +08:00
parent 08d218fd82
commit cc9ff41589
3 changed files with 5 additions and 5 deletions

View File

@@ -1984,6 +1984,7 @@ static grub_err_t ventoy_cmd_list_img(grub_extcmd_context_t ctxt, int argc, char
return grub_error(GRUB_ERR_BAD_ARGUMENT, "Must clear image before list");
}
g_enumerate_time_checked = 0;
g_enumerate_start_time_ms = grub_get_time_ms();
strdata = ventoy_get_env("VTOY_FILT_DOT_UNDERSCORE_FILE");

View File

@@ -23,7 +23,7 @@ echo '======== build grub2 for x86_64-efi ==============='
make distclean
./autogen.sh
./configure --with-platform=efi --prefix=$VT_GRUB_DIR/INSTALL/
make -j 16
make -j 16 || exit 1
sh install.sh uefi
@@ -32,7 +32,7 @@ echo '======== build grub2 for i386-efi ==============='
make distclean
./autogen.sh
./configure --target=i386 --with-platform=efi --prefix=$VT_GRUB_DIR/INSTALL/
make -j 16
make -j 16 || exit 1
sh install.sh i386efi
@@ -51,7 +51,7 @@ TARGET_CC=aarch64-linux-gnu-gcc \
TARGET_OBJCOPY=aarch64-linux-gnu-objcopy \
TARGET_STRIP=aarch64-linux-gnu-strip TARGET_NM=aarch64-linux-gnu-nm \
TARGET_RANLIB=aarch64-linux-gnu-ranlib
make -j 16
make -j 16 || exit 1
sh install.sh arm64
@@ -61,7 +61,7 @@ echo '======== build grub2 for i386-pc ==============='
make distclean
./autogen.sh
./configure --target=i386 --with-platform=pc --prefix=$VT_GRUB_DIR/INSTALL/
make -j 16
make -j 16 || exit 1
sh install.sh