Lines Matching full:try
40 static char *getbootfile(int try);
41 static int loadakernel(int try, int argc, char* argv[]);
43 /* List of kernel names to try (may be overwritten by boot.config) XXX should move from here? */
159 * we haven't tried already, try now.
168 autoboot(-1, NULL); /* try to boot automatically */ in autoboot_maybe()
186 /* try to get a delay from the environment */ in autoboot()
265 * Scrounge for the name of the (try)'th file we will try to boot.
268 getbootfile(int try) in getbootfile() argument
281 * Try $bootfile, then try our builtin default in getbootfile()
286 while ((try > 0) && (spec != NULL)) { in getbootfile()
290 try--; in getbootfile()
310 * Try to find the /etc/fstab file on the filesystem (rootdev),
417 loadakernel(int try, int argc, char* argv[]) in loadakernel() argument
421 for (try = 0; (cp = getbootfile(try)) != NULL; try++) in loadakernel()