117cba40b0
resolves: rhbz#1990720, rhbz#1950627 Fix license files. (cherry picked from commit4c961db464
) Move appliance to separate subpackage resolves: rhbz#1989514 https://bugzilla.redhat.com/show_bug.cgi?id=1989514 Move the appliance to a subpackage (libguestfs-appliance). The main package depends on this new subpackage so in effect nothing changes for most users. However this allows the appliance to be replaced if there exists a package called "libguestfs-noappliance". This package is not provided anywhere, you have to provide the dependency or make the package yourself. But if you do this then libguestfs won't install the appliance and you are free to replace it with (eg) a fixed appliance. (cherry picked from commit941da64078
)
35 lines
1017 B
Diff
35 lines
1017 B
Diff
From 90a076fe19ead3c517ba2b45edfcc7fffec9860d Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Fri, 6 Aug 2021 08:26:51 +0100
|
|
Subject: [PATCH] appliance: Add IBM850 iconv converter for syslinux
|
|
|
|
$ guestfish -N fs:vfat:2G syslinux /dev/sda1
|
|
libguestfs: error: syslinux: Error converting to codepage 850 Invalid argument
|
|
...
|
|
|
|
This happens because of the default codepage requested by syslinux
|
|
(code page 850) combined with the appliance missing the iconv
|
|
converter for this codepage.
|
|
|
|
Reported-by: Yongkui Guo
|
|
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1990720
|
|
---
|
|
appliance/packagelist.in | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
|
|
index cede0ac0b..b5f9d9dc7 100644
|
|
--- a/appliance/packagelist.in
|
|
+++ b/appliance/packagelist.in
|
|
@@ -28,6 +28,7 @@ ifelse(REDHAT,1,
|
|
dhclient
|
|
gfs-utils
|
|
gfs2-utils
|
|
+ glibc-gconv-extra dnl syslinux requires IBM850 iconv converter
|
|
grub
|
|
hfsplus-tools
|
|
iproute
|
|
--
|
|
2.31.1
|
|
|