stand: s/libstand/libsa/g to catch up with rename
We renamed libstand to libsa years ago with the move from sys/boot to stand. Catch up in the comments. Sponsored by: Netflix
This commit is contained in:
parent
6eb6aeef7e
commit
bd001d86d6
@ -82,7 +82,7 @@ LDFLAGS+= -Wl,-znocombreloc
|
||||
LIBEFI= ${BOOTOBJ}/efi/libefi/libefi.a
|
||||
|
||||
#
|
||||
# Add libstand for the runtime functions used by the compiler - for example
|
||||
# Add libsa for the runtime functions used by the compiler - for example
|
||||
# __aeabi_* (arm) or __divdi3 (i386).
|
||||
# as well as required string and memory functions for all platforms.
|
||||
#
|
||||
|
@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
/*
|
||||
* CHAR16 related functions moved from loader.
|
||||
* Perhaps we should move those to libstand afterall, but they are
|
||||
* Perhaps we should move those to libsa afterall, but they are
|
||||
* needed only by UEFI.
|
||||
*/
|
||||
|
||||
|
@ -38,7 +38,7 @@ static int bios_seconds(void);
|
||||
/*
|
||||
* Return the BIOS time-of-day value.
|
||||
*
|
||||
* XXX uses undocumented BCD support from libstand.
|
||||
* XXX uses undocumented BCD support from libsa.
|
||||
*/
|
||||
static int
|
||||
bios_seconds(void)
|
||||
|
@ -50,7 +50,7 @@ extern struct devsw fwohci;
|
||||
#endif
|
||||
extern struct devsw vdisk_dev;
|
||||
|
||||
/* Exported for libstand */
|
||||
/* Exported for libsa */
|
||||
struct devsw *devsw[] = {
|
||||
&biosfd,
|
||||
&bioscd,
|
||||
|
@ -45,7 +45,7 @@ extern struct devsw hostdisk;
|
||||
* XXX rename these arrays to be consistent and less namespace-hostile
|
||||
*/
|
||||
|
||||
/* Exported for libstand */
|
||||
/* Exported for libsa */
|
||||
struct devsw *devsw[] = {
|
||||
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
|
||||
&hostdisk,
|
||||
|
@ -117,7 +117,7 @@ struct fs_ops {
|
||||
};
|
||||
|
||||
/*
|
||||
* libstand-supplied filesystems
|
||||
* libsa-supplied filesystems
|
||||
*/
|
||||
extern struct fs_ops ufs_fsops;
|
||||
extern struct fs_ops tftp_fsops;
|
||||
@ -159,7 +159,7 @@ struct devsw {
|
||||
};
|
||||
|
||||
/*
|
||||
* libstand-supplied device switch
|
||||
* libsa-supplied device switch
|
||||
*/
|
||||
extern struct devsw netdev;
|
||||
|
||||
|
@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
/*
|
||||
* Small amount of shim code needed to get zfs_zstd.c to compile. These items
|
||||
* here should all be defined in the SPL or as part of libstand somewhere, but
|
||||
* here should all be defined in the SPL or as part of libsa somewhere, but
|
||||
* aren't for reasons that haven't been tracked down yet. Ideally, they would
|
||||
* all go away and we'd compile zfs_zstd.c directly. Based on an original by
|
||||
* Matt Macey, but only the #include remains untouched from that.
|
||||
|
@ -48,7 +48,7 @@ void (*exitfn)(int) = exit;
|
||||
* XXX rename these arrays to be consistent and less namespace-hostile
|
||||
*/
|
||||
|
||||
/* Exported for libstand */
|
||||
/* Exported for libsa */
|
||||
struct devsw *devsw[] = {
|
||||
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
|
||||
&ofwdisk,
|
||||
|
@ -47,7 +47,7 @@ void (*exitfn)(int) = exit;
|
||||
* XXX rename these arrays to be consistent and less namespace-hostile
|
||||
*/
|
||||
|
||||
/* Exported for libstand */
|
||||
/* Exported for libsa */
|
||||
struct devsw *devsw[] = {
|
||||
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
|
||||
&uboot_storage,
|
||||
|
@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$");
|
||||
* XXX rename these arrays to be consistent and less namespace-hostile
|
||||
*/
|
||||
|
||||
/* Exported for libstand */
|
||||
/* Exported for libsa */
|
||||
struct devsw *devsw[] = {
|
||||
&host_dev,
|
||||
&userboot_disk,
|
||||
|
Loading…
Reference in New Issue
Block a user