svn commit: r344374 - stable/11/stand/efi/boot1
Kyle Evans
kevans at FreeBSD.org
Wed Feb 20 18:46:32 UTC 2019
Author: kevans
Date: Wed Feb 20 18:46:31 2019
New Revision: 344374
URL: https://svnweb.freebsd.org/changeset/base/344374
Log:
MFC r335773: Revert preference to be an int.
While in base we use it as a boolean (of the wrong spelling), there's
at least one out of tree user that needs it to be int since priorirty
is a small int, not a 0/1. In deference to the time it's wasted me and
my team, push this up into FreeBSD for whatever short life boot1 may
have in the tree.
Modified:
stable/11/stand/efi/boot1/boot_module.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/stand/efi/boot1/boot_module.h
==============================================================================
--- stable/11/stand/efi/boot1/boot_module.h Wed Feb 20 18:44:09 2019 (r344373)
+++ stable/11/stand/efi/boot1/boot_module.h Wed Feb 20 18:46:31 2019 (r344374)
@@ -51,7 +51,7 @@ typedef struct dev_info
EFI_HANDLE *devhandle;
void *devdata;
uint64_t partoff;
- BOOLEAN preferred;
+ int preferred;
struct dev_info *next;
} dev_info_t;
More information about the svn-src-all
mailing list