亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bootconfig.c

?? vxworks for S3c2410 bsp
?? C
?? 第 1 頁 / 共 5 頁
字號:
	{        printErr ("\nCannot open \"%s\".\n", fileName);        return (ERROR);	}    if (bootLoadModule (fd, pEntry) != OK)        goto pcmciaLoadErr;    close (fd);    return (OK);pcmciaLoadErr:    close (fd);    return (ERROR);    }#endif	/* INCLUDE_PCMCIA */#ifdef	INCLUDE_TFFS#define	TFFS_MEM_DOSFS	0x200000#include "usrTffs.c"#include "sysTffs.c"      /* the BSP stub file, in the BSP directory */ /******************************************************************************** tffsLoad - load a vxWorks image from a TFFS Flash disk** RETURNS: OK, or ERROR if file can not be loaded.** NOMANUAL*/LOCAL STATUS tffsLoad     (    int     drive,		    int     removable,		    char    * fileName,		    FUNCPTR * pEntry    )    {    int fd;    printErr ("Loading %s...", fileName);    if ((fd = open (fileName, O_RDONLY, 0)) == ERROR)	{        printErr ("\nCannot open \"%s\".\n", fileName);        return (ERROR);	}    if (bootLoadModule (fd, pEntry) != OK)        goto tffsLoadErr;    close (fd);    return (OK);tffsLoadErr:    close (fd);    return (ERROR);    }#endif	/* INCLUDE_TFFS */#ifdef INCLUDE_TSFS_BOOT/******************************************************************************** RETURNS: OK, or ERROR if file can not be loaded.** NOMANUAL*/LOCAL STATUS tsfsLoad     (    char    * fileName,		/* file name to download */    FUNCPTR * pEntry    )    {    int fd;    WDB_EVT_NODE rebootEventNode;    char corefile [100];    if (fileName[0] != '/' && fileName[0] != '\\')	sprintf (corefile, "/tgtsvr/%s", fileName);    else	sprintf (corefile, "/tgtsvr%s", fileName);    printf ("Booting using TSFS...\nMake sure that your");    printf (" Target Server is started with -R[oot] option.\n");#ifndef INCLUDE_TSFS_BOOT_VIO_CONSOLE    printf ("Waiting for Target Server connection...");    while (!wdbTargetIsConnected())    	taskDelay (sysClkRateGet());    printf (" Done.\n");#endif	/* INCLUDE_TSFS_BOOT_VIO_CONSOLE */    printErr ("\nLoading %s...\n", corefile);    if ((fd = open (corefile, O_RDONLY, 0)) == ERROR)	{        printErr ("\nCannot open \"%s\".\n", corefile);        return (ERROR);	}    if (bootLoadModule (fd, pEntry) != OK)        goto tsfsLoadErr;    close (fd);#if (WDB_COMM_TYPE != WDB_COMM_SERIAL)    wdbEventNodeInit (&rebootEventNode, wdbRebootEventGet, NULL, NULL);    wdbEventPost (&rebootEventNode);    taskDelay (sysClkRateGet() / 10);#endif	/* WDB_COMM_TYPE != WDB_COMM_SERIAL */    return (OK);tsfsLoadErr:    close (fd);    return (ERROR);    }/******************************************************************************** wdbRebootEventGet - dummy eventGet routine to force the Target Server restart** suspend the WDB task, so the Target Server will get a RPC_SYSTEMERROR* will trying to get an event, so it will restart and try to re-attach to* the target.*/LOCAL void wdbRebootEventGet    (    void *		pNode,    WDB_EVT_DATA *	pEvtData    )    {    taskSuspend (0);    }#endif	/* INCLUDE_TSFS_BOOT */#ifdef  INCLUDE_NETWORK/******************************************************************************** netifAdrsPrint - print MAC address of a network interface*/LOCAL void netifAdrsPrint     (    char *ifname		/* interface name */    )    {    IMPORT struct ifnet *ifunit ();    struct ifnet *ifp;    char *buf;    char  devName [10];    int i, value;    if (ifname == NULL || *ifname == EOS)	{	printf ("Interface not specified\n");	return;	}    while (*ifname == ' ')	ifname++;       /* skip leading blanks */    if (*ifname == EOS)	{	printf ("Interface not specified\n");	return;	}    i = 0;    while (!isdigit((int)ifname[i]) && !isspace((int)ifname[i]) && ifname[i] != EOS)       i++;    if (ifname[i] == EOS)                value = 0;     buf = &ifname[i];    if (bootScanNum (&buf, &value, FALSE) != OK)         value = 0;    ifname[i] = EOS;    sprintf (devName, "%s%d", ifname, value);    if (strncmp (devName, "bp", 2) == 0)	{	printf ("Address for device \"%s\" == 00:00:00:00:00:%02x\n",		devName,  sysProcNumGet ());	return;	}    hostTblInit ();		/* initialize host table */    if (netLibInit () != OK)        printf ("netLibInit() error returned\n");    if ((ifp = ifunit (devName)) == NULL)	{	if ((usrNetIfAttach (ifname, value, "0") != OK) ||	    (usrNetIfConfig (ifname, value, "0", (char *) NULL, 0) != OK))	    {	    printf ("Cannot initialize interface named \"%s\"\n", devName);	    return;	    }	if ((ifp = ifunit (devName)) == NULL)	    {	    printf ("Device named \"%s\" doesn't exist.\n", devName);	    return;	    }	}    if (!(ifp->if_flags & IFF_POINTOPOINT) &&	!(ifp->if_flags & IFF_LOOPBACK))	{        printf ("Address for device \"%s\" == %02x:%02x:%02x:%02x:%02x:%02x\n",		devName,		((struct arpcom *)ifp)->ac_enaddr [0],		((struct arpcom *)ifp)->ac_enaddr [1],		((struct arpcom *)ifp)->ac_enaddr [2],		((struct arpcom *)ifp)->ac_enaddr [3],		((struct arpcom *)ifp)->ac_enaddr [4],		((struct arpcom *)ifp)->ac_enaddr [5]);	}    if_dettach (ifunit (devName));	/* dettach interface for fresh start */    }#endif  /* INCLUDE_NETWORK *//********************************************************************************* go - start at specified address*/LOCAL void go     (    FUNCPTR entry    )    {    printf ("Starting at 0x%x...\n\n", (int) entry);    taskDelay (sysClkRateGet ());	/* give the network a moment to close */#ifdef  INCLUDE_NETWORK    if (netLibInitialized == TRUE)        ifreset ();			/* reset network to avoid interrupts */#ifdef INCLUDE_END       (void) muxDevStopAll (0);      #endif  /* INCLUDE_END */#endif  /* INCLUDE_NETWORK */#if	(CPU_FAMILY == PPC)    cacheTextUpdate ((void *) (LOCAL_MEM_LOCAL_ADRS),	/* cache coherency */		     (size_t) (sysMemTop() - LOCAL_MEM_LOCAL_ADRS));#else#ifdef	INCLUDE_CACHE_SUPPORT    cacheClear (DATA_CACHE, NULL, ENTIRE_CACHE);	/* push cache to mem */#endif	/* INCLUDE_CACHE_SUPPORT */#endif	/* (CPU_FAMILY == PPC) */#if	(CPU_FAMILY == I80X86)    sysClkDisable ();			/* disable the system clock interrupt */    sysIntLock ();			/* lock the used/owned interrupts */#   if defined (SYMMETRIC_IO_MODE) || defined (VIRTUAL_WIRE_MODE)    {    extern void loApicEnable ();    loApicEnable (FALSE);		/* disable the LOAPIC */    }#       if defined (SYMMETRIC_IO_MODE)    {    extern BOOL	sysBp;			/* TRUE for BP, FALSE for AP */    extern void ioApicEnable ();    if (sysBp)        ioApicEnable (FALSE);		/* disable the IO APIC */    }#       endif /* (SYMMETRIC_IO_MODE) */#   endif /* (SYMMETRIC_IO_MODE) || (VIRTUAL_WIRE_MODE) */#endif	/* (CPU_FAMILY == I80X86) */    intLock();     (entry) ();		    }/********************************************************************************* m - modify memory*** All numbers entered and displayed are in hexadecimal.* Memory is treated as 16-bit words.*/LOCAL void m     (    char *adrs		/* address to change */    )    {    char line [MAX_LINE + 1];	/* leave room for EOS */    char *pLine;		/* ptr to current position in line */    int value;			/* value found in line */    char excess;    /* round down to word boundary */    for (adrs = (char *) ((int) adrs & 0xfffffffe);	/* start on even addr */         ;						/* FOREVER */	 adrs = (char *) (((short *) adrs) + 1))	/* bump as short ptr */	{	/* prompt for substitution */	printf ("%06x:  %04x-", (int) adrs, (*(short *)adrs) & 0x0000ffff);	/* get substitution value:	 *   skip empty lines (CR only);	 *   quit on end of file or invalid input;	 *   otherwise put specified value at address */	if (fioRdString (STD_IN, line, MAX_LINE) == EOF)	    break;	line [MAX_LINE] = EOS;	/* make sure input line has EOS */	/* skip leading spaces*/	for (pLine = line; isspace ((UINT) * pLine); ++pLine)	    ;	if (*pLine == EOS)			/* skip field if just CR */	    continue;	if (sscanf (pLine, "%x%1s", &value, &excess) != 1)	    break;				/* quit if not number */	* (short *) adrs = value;		/* assign new value */	}    printf ("\n");    }/********************************************************************************* d - display memory** Display contents of memory, starting at adrs.  Memory is displayed in* words.  The number of words displayed defaults to 64.  If* nwords is non-zero, that number of words is printed, rounded up to* the nearest number of full lines.  That number then becomes the default.*/LOCAL void d     (    FAST char *adrs,	/* address to display */    int	       nwords	/* number of words to print. */    )			/* If 0, print 64 or last specified. */    {    static char *last_adrs;    static int dNbytes = 128;    char ascii [17];    FAST int nbytes;    FAST int byte;    ascii [16] = EOS;			/* put an EOS on the string */    nbytes = 2 * nwords;    if (nbytes == 0)	nbytes = dNbytes;	/* no count specified: use current byte count */    else	dNbytes = nbytes;	/* change current byte count */    if (adrs == 0)	adrs = last_adrs;	/* no address specified: use last address */    adrs = (char *) ((int) adrs & ~1);	/* round adrs down to word boundary */    /* print leading spaces on first line */    bfill ((char *) ascii, 16, '.');    printf ("%06x:  ", (int) adrs & ~0xf);    for (byte = 0; byte < ((int) adrs & 0xf); byte++)	{	printf ("  ");	if (byte & 1)	    printf (" ");	/* space between words */	if (byte == 7)	    printf (" ");	/* extra space between words 3 and 4 */	ascii [byte] = ' ';	}    /* print out all the words */    while (nbytes-- > 0)	{	if (byte == 16)	    {	    /* end of line:	     *   print out ascii format values and address of next line */	    printf ("  *%16s*\n%06x:  ", ascii, (int) adrs);	    bfill ((char *) ascii, 16, '.');	/* clear out ascii buffer */	    byte = 0;				/* reset word count */	    }#if  _BYTE_ORDER == _BIG_ENDIAN    printf ("%02x", *adrs & 0x000000ff);#else  /* _BYTE_ORDER == _LITTLE_ENDIAN  */    /* swap odd and even bytes */    if ( (long)adrs & 1)        {        printf ("%02x", *((char *)((long)adrs & 0xfffffffe)) & 0x000000ff);        }    else        {        printf ("%02x", *((char *)((long)adrs + 1)) & 0x000000ff);        }#endif /* _BYTE_ORDER == _BIG_ENDIAN  */	if (byte & 1)	    printf (" ");	/* space between words */	if (byte == 7)	    printf (" ");	/* extra space between words 3 and 4 */	if (* adrs == ' ' ||			(isascii ((UINT) * adrs) && isprint ((UINT) * adrs)))	    ascii [byte] = (UINT) * adrs;	adrs++;	byte++;	}    /* print remainder of last line */    for (; byte < 16; byte++)	{	printf ("  ");	if (byte & 1)	    printf (" ");	/* space between words */	if (byte == 7)	    printf (" ");	/* extra space between words 3 and 4 */	ascii [byte] = ' ';	}    printf ("  *%16s*\n", ascii);	/* print out ascii format values */    last_adrs = adrs;    }/********************************************************************************* bootExcHandler - bootrom exception handling routine*/LOCAL void bootExcHandler     (    int tid		/* task ID */    )    {    REG_SET regSet;       /* task's registers */    /* get registers of task to be traced */    if (taskRegsGet (tid, &regSet) != ERROR)        {        trcStack (&regSet, (FUNCPTR) NULL, tid);        taskRegsShow (tid);        }    else        printf ("bootExcHandler: exception caught but no valid task.\n");    taskDelay (sysClkRateGet ());       /* pause a second */    reboot (BOOT_NO_AUTOBOOT);    }/********************************************************************************* skipSpace - advance pointer past white space** Increments the string pointer passed as a parameter to the next* non-white-space character in the string.*/LOCAL void skipSpace     (    FAST char **strptr	/* pointer to pointer to string */    )    {    while (isspace ((UINT) ** strptr))	++ * strptr;    }/********************************************************************************* printExcMsg - print exception message** Avoid printing possible control characters in exception message area.*/LOCAL void printExcMsg     (    char *string    )    {    printf ("\n");    while (isascii ((UINT) * string) && (isprint ((UINT) * string) ||						isspace ((UINT) * string)))	printf ("%c", * string++);    printf ("\n");    }/******************************************************************************** getArg - get argument from command line*** RE

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久av老司机精品网站导航| 亚洲综合在线免费观看| 天堂av在线一区| 7777女厕盗摄久久久| 天堂一区二区在线| 欧美一个色资源| 国产综合久久久久久鬼色| 久久久亚洲欧洲日产国码αv| 国产精品1区二区.| 国产精品污www在线观看| 91麻豆精品在线观看| 亚洲亚洲人成综合网络| 在线成人av影院| 久久不见久久见免费视频7| 精品久久久久久综合日本欧美| 国产在线精品视频| 国产精品久久毛片| 欧美性xxxxx极品少妇| 麻豆成人综合网| 久久网站热最新地址| av成人老司机| 日韩二区三区在线观看| 欧美α欧美αv大片| 成人激情电影免费在线观看| 亚洲国产美女搞黄色| 日韩西西人体444www| 懂色av一区二区三区免费看| 亚洲一区二区三区视频在线| 精品久久久久香蕉网| 99九九99九九九视频精品| 亚洲国产欧美一区二区三区丁香婷| 精品精品国产高清a毛片牛牛| 欧美色图免费看| 久久精品国产亚洲高清剧情介绍| 国产调教视频一区| 欧美午夜理伦三级在线观看| 韩国女主播成人在线| 亚洲男女一区二区三区| 日韩欧美色综合| 色综合天天天天做夜夜夜夜做| 日韩成人免费看| 国产精品视频yy9299一区| 51精品国自产在线| 成人国产精品免费观看| 日韩电影在线免费看| 国产精品丝袜91| 日韩三级免费观看| 欧美亚洲一区二区在线| 国产成人日日夜夜| 麻豆精品国产传媒mv男同| 亚洲精品水蜜桃| 中文av一区二区| 精品日韩欧美一区二区| 欧美视频在线一区二区三区| 不卡视频一二三四| 国产一区日韩二区欧美三区| 日韩精品亚洲一区| 亚洲美女偷拍久久| 国产欧美一区二区精品忘忧草| 337p亚洲精品色噜噜噜| 91在线免费播放| 丁香一区二区三区| 韩国精品一区二区| 免费在线观看日韩欧美| 一个色在线综合| 亚洲欧美激情视频在线观看一区二区三区| 久久奇米777| 欧美成人猛片aaaaaaa| 欧美老人xxxx18| 欧美日韩一区二区电影| 91国内精品野花午夜精品| a在线欧美一区| 9久草视频在线视频精品| 国产成人精品网址| 国产成人精品免费视频网站| 国产精一品亚洲二区在线视频| 日本高清无吗v一区| 92精品国产成人观看免费 | 欧美变态凌虐bdsm| 69堂亚洲精品首页| 91精品国产综合久久福利软件| 色成年激情久久综合| 99国产精品久久| 一本色道a无线码一区v| 在线免费不卡电影| 欧美色精品天天在线观看视频| 欧美日韩黄视频| 欧美高清精品3d| 欧美mv日韩mv国产网站| 精品国产1区二区| 国产欧美一区二区在线观看| 国产精品免费久久| 亚洲欧美日韩中文字幕一区二区三区 | 日韩欧美国产系列| 欧美成人官网二区| 久久久精品免费网站| 一区在线中文字幕| 一区二区三区欧美日韩| 亚洲大型综合色站| 人人精品人人爱| 国产精品一二三| 97久久精品人人做人人爽50路| 色一情一伦一子一伦一区| 欧美视频在线播放| 亚洲va国产va欧美va观看| 图片区小说区国产精品视频| 黑人精品欧美一区二区蜜桃| 成人高清免费观看| 欧美午夜电影在线播放| 精品日本一线二线三线不卡| 国产精品高潮久久久久无| 亚洲嫩草精品久久| 日韩电影免费在线观看网站| 国产成人在线看| 在线看国产一区二区| 日韩欧美色电影| 亚洲三级视频在线观看| 日本不卡一二三区黄网| 成人激情免费视频| 欧美精品在线观看一区二区| 欧美激情在线免费观看| 亚洲综合一区二区精品导航| 加勒比av一区二区| 色av综合在线| 国产婷婷色一区二区三区在线| 亚洲欧美日韩国产手机在线| 久久99精品久久久久久动态图| 91无套直看片红桃| 日韩久久久精品| 一区二区在线免费| 国产一区三区三区| 在线不卡免费av| 亚洲色欲色欲www在线观看| 麻豆国产欧美日韩综合精品二区| 99久久婷婷国产精品综合| 欧美电视剧免费观看| 亚洲精品国产成人久久av盗摄 | 亚洲一区二区美女| 成人午夜大片免费观看| 日韩视频免费直播| 一区二区三区欧美亚洲| 不卡视频在线观看| 久久综合九色欧美综合狠狠| 香蕉乱码成人久久天堂爱免费| eeuss影院一区二区三区| 2022国产精品视频| 视频在线在亚洲| 在线视频中文字幕一区二区| 国产精品丝袜在线| 国产在线播放一区二区三区| 日韩欧美综合在线| 石原莉奈在线亚洲三区| 色av综合在线| 一区二区国产盗摄色噜噜| 99这里只有久久精品视频| 久久精品人人爽人人爽| 久久精品国产999大香线蕉| 7878成人国产在线观看| 亚洲www啪成人一区二区麻豆| 色偷偷88欧美精品久久久| 中文av一区二区| 不卡视频在线观看| 中文字幕一区在线观看| 成人高清在线视频| 亚洲欧洲精品一区二区精品久久久 | 国产一二精品视频| 精品三级在线观看| 美女精品一区二区| 欧美大肚乱孕交hd孕妇| 麻豆成人av在线| 精品欧美乱码久久久久久1区2区| 日本 国产 欧美色综合| 日韩欧美国产不卡| 久久99精品久久只有精品| 日韩美女一区二区三区四区| 麻豆一区二区三| 精品对白一区国产伦| 国产剧情一区在线| 中文字幕高清不卡| 99久久国产综合精品麻豆| 亚洲人成网站色在线观看| 日本精品一区二区三区高清 | 99国产精品99久久久久久| 中文字幕人成不卡一区| 一本大道av伊人久久综合| 亚洲自拍与偷拍| 亚洲激情自拍偷拍| 欧美在线观看一二区| 亚洲国产精品久久久久秋霞影院 | 亚洲另类在线视频| 欧美性色欧美a在线播放| 亚洲第一电影网| xnxx国产精品| 99久久99久久综合| 石原莉奈在线亚洲三区| 久久久久综合网| 色老综合老女人久久久| 午夜一区二区三区在线观看| 日韩欧美一级二级三级| 国产寡妇亲子伦一区二区|