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:
Warner Losh 2022-04-30 07:33:15 -06:00
parent 6eb6aeef7e
commit bd001d86d6
10 changed files with 11 additions and 11 deletions

View File

@ -82,7 +82,7 @@ LDFLAGS+= -Wl,-znocombreloc
LIBEFI= ${BOOTOBJ}/efi/libefi/libefi.a 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). # __aeabi_* (arm) or __divdi3 (i386).
# as well as required string and memory functions for all platforms. # as well as required string and memory functions for all platforms.
# #

View File

@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$");
/* /*
* CHAR16 related functions moved from loader. * 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. * needed only by UEFI.
*/ */

View File

@ -38,7 +38,7 @@ static int bios_seconds(void);
/* /*
* Return the BIOS time-of-day value. * Return the BIOS time-of-day value.
* *
* XXX uses undocumented BCD support from libstand. * XXX uses undocumented BCD support from libsa.
*/ */
static int static int
bios_seconds(void) bios_seconds(void)

View File

@ -50,7 +50,7 @@ extern struct devsw fwohci;
#endif #endif
extern struct devsw vdisk_dev; extern struct devsw vdisk_dev;
/* Exported for libstand */ /* Exported for libsa */
struct devsw *devsw[] = { struct devsw *devsw[] = {
&biosfd, &biosfd,
&bioscd, &bioscd,

View File

@ -45,7 +45,7 @@ extern struct devsw hostdisk;
* XXX rename these arrays to be consistent and less namespace-hostile * XXX rename these arrays to be consistent and less namespace-hostile
*/ */
/* Exported for libstand */ /* Exported for libsa */
struct devsw *devsw[] = { struct devsw *devsw[] = {
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
&hostdisk, &hostdisk,

View File

@ -117,7 +117,7 @@ struct fs_ops {
}; };
/* /*
* libstand-supplied filesystems * libsa-supplied filesystems
*/ */
extern struct fs_ops ufs_fsops; extern struct fs_ops ufs_fsops;
extern struct fs_ops tftp_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; extern struct devsw netdev;

View File

@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$");
/* /*
* Small amount of shim code needed to get zfs_zstd.c to compile. These items * 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 * 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 * 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. * Matt Macey, but only the #include remains untouched from that.

View File

@ -48,7 +48,7 @@ void (*exitfn)(int) = exit;
* XXX rename these arrays to be consistent and less namespace-hostile * XXX rename these arrays to be consistent and less namespace-hostile
*/ */
/* Exported for libstand */ /* Exported for libsa */
struct devsw *devsw[] = { struct devsw *devsw[] = {
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
&ofwdisk, &ofwdisk,

View File

@ -47,7 +47,7 @@ void (*exitfn)(int) = exit;
* XXX rename these arrays to be consistent and less namespace-hostile * XXX rename these arrays to be consistent and less namespace-hostile
*/ */
/* Exported for libstand */ /* Exported for libsa */
struct devsw *devsw[] = { struct devsw *devsw[] = {
#if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT)
&uboot_storage, &uboot_storage,

View File

@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$");
* XXX rename these arrays to be consistent and less namespace-hostile * XXX rename these arrays to be consistent and less namespace-hostile
*/ */
/* Exported for libstand */ /* Exported for libsa */
struct devsw *devsw[] = { struct devsw *devsw[] = {
&host_dev, &host_dev,
&userboot_disk, &userboot_disk,