From ec94a3138800973e0308c641c5e1ced7c5f1b7ba Mon Sep 17 00:00:00 2001 From: srs5694 Date: Sat, 6 Dec 2014 18:45:46 -0500 Subject: [PATCH] A couple of overlooked changes. --- CREDITS.txt | 15 +++++++++++++-- refind/main.c | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CREDITS.txt b/CREDITS.txt index a04d1ab..26ec59e 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -50,6 +50,10 @@ Program (C source code) files: enabling Intel VMX support (the enable_and_lock_vmx token in refind.conf). +* Rohan Sehgal (rohan.sehgal.su@gmail.com) wrote code to help rEFInd + detect network boot options and launch them, with the help of the + external ipxe.efi and ipxe_discover.efi programs. + * Matthew J. Garrett (mjg@redhat.com) wrote the shim boot loader upon which rEFInd relies for its Secure Boot functionality. I took a few shim functions to help out on the rEFInd side, too; see the mok/mok.c source @@ -77,6 +81,9 @@ Icons and graphics: pages correctly, the original creator was David Vignoni (aka "deviantdark" on the deviantart site). +* Erik Kemperman provided the rEFInd icon, which is a combination of + the common refresh/reload icon and the search/find icon. + * The keys icon for MOK keys management comes from the kdeartwork-iconthemes-4.8.5 package on Gentoo. @@ -107,5 +114,9 @@ Icons and graphics: (http://en.wikipedia.org/wiki/File:Google_Chrome_icon_and_wordmark_%282011%29.svg), which in turn is Google's original work. -* Erik Kemperman provided the rEFInd icon, which is a combination of - the common refresh/reload icon and the search/find icon. +* The icon used (at different sizes) for both the generic network OS and + for the network-boot badge is from + https://www.iconfinder.com/icons/37048/intranet_network_icon. + +* The icon used for the network-boot tool on the second row comes from + https://cdn2.iconfinder.com/data/icons/oxygen/48x48/devices/network-wired.png. diff --git a/refind/main.c b/refind/main.c index e3e009d..9e653b4 100644 --- a/refind/main.c +++ b/refind/main.c @@ -1438,7 +1438,7 @@ static VOID ScanNetboot() { Location = RuniPXEDiscover(SelfVolume->DeviceHandle); if (Location != NULL && FileExists(SelfVolume->RootDir, iPXEFileName)) { NetVolume = AllocatePool(sizeof(REFIT_VOLUME)); - NetVolume = CopyMem(NetVolume, SelfVolume, sizeof(REFIT_VOLUME)); + CopyMem(NetVolume, SelfVolume, sizeof(REFIT_VOLUME)); NetVolume->DiskKind = DISK_KIND_NET; NetVolume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_NET); NetVolume->PartName = NetVolume->VolName = NULL; -- 2.39.2