cd46aa6cef
the function of these files exceeds what can be sanely handled in shell in posix-comaptible way. Also writing it in C extends the functionality to non-UNIX-like OS and minimal environments.
21 lines
503 B
C
21 lines
503 B
C
#include <config.h>
|
|
#include <grub/util/install.h>
|
|
#include <grub/util/misc.h>
|
|
|
|
int
|
|
grub_install_compress_gzip (const char *src, const char *dest)
|
|
{
|
|
grub_util_error ("no compression is available for your platform");
|
|
}
|
|
|
|
int
|
|
grub_install_compress_xz (const char *src, const char *dest)
|
|
{
|
|
grub_util_error ("no compression is available for your platform");
|
|
}
|
|
|
|
int
|
|
grub_install_compress_lzop (const char *src, const char *dest)
|
|
{
|
|
grub_util_error ("no compression is available for your platform");
|
|
}
|