From: Andreas K. Hüttel Date: Sat, 13 Dec 2025 19:59:58 +0000 (+0100) Subject: util/grub-install: Allow recursive copying of theme dirs X-Git-Tag: grub-2.14~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c477a9551903c76466b9208ccf09dc6b9923dc7d;p=thirdparty%2Fgrub.git util/grub-install: Allow recursive copying of theme dirs grub-install allows to pass a parameter to install a theme in the boot partition. This works fine for the default starfield theme. However, in general themes can contain subdirectories, as, e.g. "icons", and these are not copied by grub-install. As a result, the icons are missing on the screen. Fix this by simple recursive copying. Signed-off-by: Andreas K. Hüttel Reviewed-by: Daniel Kiper --- diff --git a/util/grub-install-common.c b/util/grub-install-common.c index a913ee61c..c1c3c5704 100644 --- a/util/grub-install-common.c +++ b/util/grub-install-common.c @@ -803,13 +803,20 @@ copy_all (const char *srcd, || strcmp (de->d_name, "..") == 0) continue; srcf = grub_util_path_concat (2, srcd, de->d_name); - if (grub_util_is_special_file (srcf) - || grub_util_is_directory (srcf)) + if (grub_util_is_special_file (srcf)) { free (srcf); continue; } dstf = grub_util_path_concat (2, dstd, de->d_name); + if (grub_util_is_directory (srcf)) + { + grub_install_mkdir_p (dstf); + copy_all (srcf, dstf); + free (srcf); + free (dstf); + continue; + } grub_install_compress_file (srcf, dstf, 1); free (srcf); free (dstf);