]> code.delx.au - refind/commitdiff
A couple of overlooked changes.
authorsrs5694 <srs5694@users.sourceforge.net>
Sat, 6 Dec 2014 23:45:46 +0000 (18:45 -0500)
committersrs5694 <srs5694@users.sourceforge.net>
Sat, 6 Dec 2014 23:45:46 +0000 (18:45 -0500)
CREDITS.txt
refind/main.c

index a04d1abaf1093544b9d39eee99a7cfaa03bfb66c..26ec59eea6ffb6f0683b0d8cea00f2e57d59af0b 100644 (file)
@@ -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.
index e3e009d0a512edb52cca97fe0b2383344e9b2d9c..9e653b49109ad9e5f30311e02475c4f64184773c 100644 (file)
@@ -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;