Skip to content
Snippets Groups Projects
cmd_bootm.c 30.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • 				strcpy (buf + (start - cmdline + 8), end);
    			else
    				buf[start - cmdline + 8] = '\0';
    		} else {
    			strcpy (buf, cmdline);
    			strcat (buf, " console=");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		}
    	} else {
    
    		strcpy (buf, "console=");
    
    	setenv ("bootargs", buf);
    	debug ("after silent fix-up: %s\n", buf);
    }
    #endif /* CONFIG_SILENT_CONSOLE */
    
    /*******************************************************************/
    /* OS booting routines */
    /*******************************************************************/
    
    static int do_bootm_netbsd (int flag, int argc, char *argv[],
    
    	void (*loader)(bd_t *, image_header_t *, char *, char *);
    
    	image_header_t *os_hdr, *hdr;
    
    	ulong kernel_data, kernel_len;
    
    	char *consdev;
    	char *cmdline;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    		fit_unsupported_reset ("NetBSD");
    
    	hdr = images->legacy_hdr_os;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	/*
    	 * Booting a (NetBSD) kernel image
    	 *
    	 * This process is pretty similar to a standalone application:
    	 * The (first part of an multi-) image must be a stage-2 loader,
    	 * which in turn is responsible for loading & invoking the actual
    	 * kernel.  The only differences are the parameters being passed:
    	 * besides the board info strucure, the loader expects a command
    	 * line, the name of the console device, and (optionally) the
    	 * address of the original image header.
    	 */
    
    	if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
    
    		image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
    		if (kernel_len)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	consdev = "";
    #if   defined (CONFIG_8xx_CONS_SMC1)
    	consdev = "smc1";
    #elif defined (CONFIG_8xx_CONS_SMC2)
    	consdev = "smc2";
    #elif defined (CONFIG_8xx_CONS_SCC2)
    	consdev = "scc2";
    #elif defined (CONFIG_8xx_CONS_SCC3)
    	consdev = "scc3";
    #endif
    
    	if (argc > 2) {
    		ulong len;
    		int   i;
    
    
    		for (i = 2, len = 0; i < argc; i += 1)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    			len += strlen (argv[i]) + 1;
    		cmdline = malloc (len);
    
    
    		for (i = 2, len = 0; i < argc; i += 1) {
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    			if (i > 2)
    				cmdline[len++] = ' ';
    			strcpy (&cmdline[len], argv[i]);
    			len += strlen (argv[i]);
    		}
    
    	} else if ((cmdline = getenv ("bootargs")) == NULL) {
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		cmdline = "";
    	}
    
    
    	loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
    		(ulong)loader);
    
    
    	show_boot_progress (15);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	/*
    	 * NetBSD Stage-2 Loader Parameters:
    	 *   r3: ptr to board info data
    	 *   r4: image address
    	 *   r5: console device
    	 *   r6: boot args string
    	 */
    
    	(*loader) (gd->bd, os_hdr, consdev, cmdline);
    
    #ifdef CONFIG_LYNXKDI
    
    static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
    
    	image_header_t *hdr = &images->legacy_hdr_os_copy;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    		fit_unsupported_reset ("Lynx");
    
    	}
    #endif
    
    	lynxkdi_boot ((image_header_t *)hdr);
    
    }
    #endif /* CONFIG_LYNXKDI */
    
    
    static int do_bootm_rtems (int flag, int argc, char *argv[],
    
    {
    	void (*entry_point)(bd_t *);
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    		fit_unsupported_reset ("RTEMS");
    
    	entry_point = (void (*)(bd_t *))images->ep;
    
    
    	printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
    		(ulong)entry_point);
    
    
    	show_boot_progress (15);
    
    
    	/*
    	 * RTEMS Parameters:
    	 *   r3: ptr to board info data
    	 */
    
    	(*entry_point)(gd->bd);
    
    static int do_bootm_vxworks (int flag, int argc, char *argv[],
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	char str[80];
    
    		fit_unsupported_reset ("VxWorks");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	sprintf(str, "%lx", images->ep); /* write entry-point into string */
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	setenv("loadaddr", str);
    
    	do_bootvx(NULL, 0, 0, NULL);
    
    	return 1;
    
    static int do_bootm_qnxelf(int flag, int argc, char *argv[],
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	char *local_args[2];
    	char str[16];
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    		fit_unsupported_reset ("QNX");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	sprintf(str, "%lx", images->ep); /* write entry-point into string */
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	local_args[0] = argv[0];
    	local_args[1] = str;	/* and provide it via the arguments */
    
    	do_bootelf(NULL, 0, 2, local_args);
    
    	return 1;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    }
    
    
    #ifdef CONFIG_INTEGRITY
    static int do_bootm_integrity (int flag, int argc, char *argv[],
    			   bootm_headers_t *images)
    {
    	void (*entry_point)(void);
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    		fit_unsupported_reset ("INTEGRITY");
    		return 1;
    	}
    #endif
    
    	entry_point = (void (*)(void))images->ep;
    
    	printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
    		(ulong)entry_point);
    
    	show_boot_progress (15);
    
    	/*
    	 * INTEGRITY Parameters:
    	 *   None
    	 */
    	(*entry_point)();
    
    	return 1;
    }
    #endif