/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
* Copyright 2013 Joyent, Inc. All rights reserved.
*/
#include <sys/bootconf.h>
extern void (*_kobj_printf)(void *, const char *fmt, ...);
extern int get_weakish_int(int *);
extern int kmem_ready;
int
{
}
int
{
if (bfs_ops != &bbootfs_ops)
return (ops->fsw_unmountroot());
}
int
{
int fd;
/*
* Our policy is that we try bootfs first. If bootfs is the only
* filesystem, that's the end of it. Otherwise we will fall back to
* the normal root (i.e., ramdisk) filesystem at this point and try
* again if the file does not exist in bootfs.
*/
if (bfs_ops == &bbootfs_ops)
return (fd);
}
int
{
if (fd & BFD_F_SYSTEM_BOOT)
}
{
if (fd & BFD_F_SYSTEM_BOOT) {
}
}
{
if (fd & BFD_F_SYSTEM_BOOT) {
}
}
int
{
if (fd & BFD_F_SYSTEM_BOOT)
}
/*
* This one reads the ramdisk. If fi_memp is set, we copy the
* ramdisk content to the designated buffer. Otherwise, we
* do a "cached" read (set fi_memp to the actual ramdisk buffer).
*/
int
{
/* add in offset of root slice */
return (-1);
}
} else {
/* "cached" read */
}
return (0);
}
int
{
int i;
"failed to get ramdisk from boot\n");
return (-1);
}
#ifdef KOBJ_DEBUG
#endif
return (0);
}
return (-1);
}
void
{
#ifdef DEBUG
if (boothowto & RB_VERBOSE)
#endif
(void) BRD_UNMOUNTROOT(bfs_ops);
}
/*
* Boot time wrappers for memory allocators. Called for both permanent
* and temporary boot memory allocations. We have to track which allocator
* (boot or kmem) was used so that we know how to free.
*/
void *
{
/* allocate from boot scratch memory */
void *addr;
if (_kmem_ready)
return (kobj_alloc(size, 0));
/*
* Remember the highest BOP_ALLOC allocated address and don't free
* anything below it.
*/
return (addr);
}
/*ARGSUSED*/
void
{
/*
* Free only if it's not boot scratch memory.
*/
if ((uintptr_t)p >= scratch_max)
}
/*PRINTFLIKE1*/
void
{
}