Searched defs:autoboot (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/boot/sys/boot/common/
H A Dboot.c116 COMMAND_SET(autoboot, "autoboot", "boot automatically after a delay", command_autoboot);
139 return(autoboot(howlong, prompt));
147 * Called before we go interactive. If we think we can autoboot, and
155 /* compatibility with sparc prom, check for autoboot? */
156 cp = getenv("autoboot?");
161 autoboot(-1, NULL); /* try to boot automatically */
165 autoboot(int timeout, char *prompt) function
/illumos-gate/usr/src/boot/sys/boot/arm/at91/boot2/
H A Dboot2.c120 int autoboot, c = 0; local
126 autoboot = 1;
135 autoboot = 0;
147 if (!autoboot ||
151 autoboot = 0;
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Dboot2.c121 int autoboot, c = 0; local
130 autoboot = 1;
139 autoboot = 0;
151 if (!autoboot ||
155 autoboot = 0;
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg.c165 "autoboot",
200 "autoboot",
295 "clear autoboot",
345 "set autoboot=",
376 "info autoboot",
1857 boolean_t autoboot; local
1918 if (zonecfg_get_autoboot(handle, &autoboot) == Z_OK)
1920 pt_to_str(PT_AUTOBOOT), autoboot ? "true" : "false");
4277 boolean_t autoboot; local
4463 autoboot
5033 boolean_t autoboot; local
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c105 #define DTD_ATTR_AUTOBOOT (const xmlChar *) "autoboot"
1025 zonecfg_get_autoboot(zone_dochandle_t handle, boolean_t *autoboot) argument
1035 *autoboot = B_TRUE;
1037 *autoboot = B_FALSE;
1044 zonecfg_set_autoboot(zone_dochandle_t handle, boolean_t autoboot) argument
1047 autoboot ? DTD_ENTITY_TRUE : DTD_ENTITY_FALSE));

Completed in 111 milliseconds