* configure.ac: Fix spelling.
* grub-core/commands/parttool.c: Fix grammar. * grub-core/disk/ldm.c: Use consistent capitalisation for "LDM Embedding Partition".
This commit is contained in:
parent
74fa9ac1a6
commit
16f7455b04
4 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2013-12-23 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* configure.ac: Fix spelling.
|
||||||
|
* grub-core/commands/parttool.c: Fix grammar.
|
||||||
|
* grub-core/disk/ldm.c: Use consistent capitalisation for "LDM
|
||||||
|
Embedding Partition".
|
||||||
|
|
||||||
2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* include/grub/arm64/linux.h: Remove leftovers. Add missing prefixes.
|
* include/grub/arm64/linux.h: Remove leftovers. Add missing prefixes.
|
||||||
|
|
|
@ -1174,7 +1174,7 @@ enable_grub_emu_usb=no
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x"$enable_grub_emu_sdl" = xno ; then
|
if test x"$enable_grub_emu_sdl" = xno ; then
|
||||||
grub_emu_sdl_excuse="explicitely disabled"
|
grub_emu_sdl_excuse="explicitly disabled"
|
||||||
fi
|
fi
|
||||||
[if [ x"$grub_emu_sdl_excuse" = x ]; then
|
[if [ x"$grub_emu_sdl_excuse" = x ]; then
|
||||||
# Check for libSDL libraries.]
|
# Check for libSDL libraries.]
|
||||||
|
@ -1190,7 +1190,7 @@ AC_CHECK_LIB([SDL], [SDL_Init], [LIBSDL="-lSDL"],
|
||||||
[fi]
|
[fi]
|
||||||
|
|
||||||
if test x"enable_grub_emu_sdl" = xyes && test x"$grub_emu_sdl_excuse" != x ; then
|
if test x"enable_grub_emu_sdl" = xyes && test x"$grub_emu_sdl_excuse" != x ; then
|
||||||
AC_MSG_ERROR([SDL support for grub-emu was explicitely requested but can't be compiled ($grub_emu_sdl_excuse)])
|
AC_MSG_ERROR([SDL support for grub-emu was explicitly requested but can't be compiled ($grub_emu_sdl_excuse)])
|
||||||
fi
|
fi
|
||||||
if test x"$grub_emu_sdl_excuse" = x ; then
|
if test x"$grub_emu_sdl_excuse" = x ; then
|
||||||
enable_grub_emu_sdl=yes
|
enable_grub_emu_sdl=yes
|
||||||
|
|
|
@ -133,7 +133,7 @@ show_help (grub_device_t dev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (! found)
|
if (! found)
|
||||||
grub_printf_ (N_("Sorry no parttool is available for %s\n"),
|
grub_printf_ (N_("Sorry, no parttool is available for %s\n"),
|
||||||
dev->disk->partition->partmap->name);
|
dev->disk->partition->partmap->name);
|
||||||
return GRUB_ERR_NONE;
|
return GRUB_ERR_NONE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1012,7 +1012,7 @@ grub_util_ldm_embed (struct grub_disk *disk, unsigned int *nsectors,
|
||||||
usable for bootloaders (called generically
|
usable for bootloaders (called generically
|
||||||
"embedding zone") and this operation is
|
"embedding zone") and this operation is
|
||||||
called "embedding". */
|
called "embedding". */
|
||||||
N_("your LDM embedding Partition is too small;"
|
N_("your LDM Embedding Partition is too small;"
|
||||||
" embedding won't be possible"));
|
" embedding won't be possible"));
|
||||||
*nsectors = lv->size;
|
*nsectors = lv->size;
|
||||||
if (*nsectors > max_nsectors)
|
if (*nsectors > max_nsectors)
|
||||||
|
|
Loading…
Reference in a new issue