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

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

?? bootconfig.c

?? tornado開發 三星s3c44b0x開發板 bsp
?? C
?? 第 1 頁 / 共 5 頁
字號:
#define PPP_OPTIONS_FLAGS ((PPP_OPT_NO_ALL << PPP_S_NO_ALL)  | \    (PPP_OPT_PASSIVE_MODE << PPP_S_PASSIVE_MODE)             | \    (PPP_OPT_SILENT_MODE << PPP_S_SILENT_MODE)               | \    (PPP_OPT_DEFAULTROUTE << PPP_S_DEFAULTROUTE)             | \    (PPP_OPT_PROXYARP << PPP_S_PROXYARP)                     | \    (PPP_OPT_IPCP_ACCEPT_LOCAL << PPP_S_IPCP_ACCEPT_LOCAL)   | \    (PPP_OPT_IPCP_ACCEPT_REMOTE << PPP_S_IPCP_ACCEPT_REMOTE) | \    (PPP_OPT_NO_IP << PPP_S_NO_IP)                           | \    (PPP_OPT_NO_ACC << PPP_S_NO_ACC)                         | \    (PPP_OPT_NO_PC << PPP_S_NO_PC)                           | \    (PPP_OPT_NO_VJ << PPP_S_NO_VJ)                           | \    (PPP_OPT_NO_VJCCOMP << PPP_S_NO_VJCCOMP)                 | \    (PPP_OPT_NO_ASYNCMAP << PPP_S_NO_ASYNCMAP)               | \    (PPP_OPT_NO_MN << PPP_S_NO_MN)                           | \    (PPP_OPT_NO_MRU << PPP_S_NO_MRU)                         | \    (PPP_OPT_NO_PAP << PPP_S_NO_PAP)                         | \    (PPP_OPT_NO_CHAP << PPP_S_NO_CHAP)                       | \    (PPP_OPT_REQUIRE_PAP << PPP_S_REQUIRE_PAP)               | \    (PPP_OPT_REQUIRE_CHAP << PPP_S_REQUIRE_CHAP)             | \    (PPP_OPT_LOGIN << PPP_S_LOGIN)                           | \    (PPP_OPT_DEBUG << PPP_S_DEBUG)                           | \    (PPP_OPT_DRIVER_DEBUG << PPP_S_DRIVER_DEBUG))#endif  /* PPP_OPTIONS_FLAGS */ PPP_OPTIONS pppOptions =    {    PPP_OPTIONS_FLAGS,		/* flags field */    PPP_STR_ASYNCMAP,		/* Set the desired async map */    PPP_STR_ESCAPE_CHARS,	/* Set chars to escape on transmission */    PPP_STR_VJ_MAX_SLOTS,	/* Set maximum VJ compression header slots */    PPP_STR_NETMASK,		/* Set netmask value for negotiation */    PPP_STR_MRU,		/* Set MRU value for negotiation */    PPP_STR_MTU,		/* Set MTU value for negotiation */    PPP_STR_LCP_ECHO_FAILURE,	/* Set max # consecutive LCP echo failures */    PPP_STR_LCP_ECHO_INTERVAL,	/* Set time for LCP echo requests */    PPP_STR_LCP_RESTART,	/* Set timeout for LCP */    PPP_STR_LCP_MAX_TERMINATE,	/* Set max # xmits for LCP term-reqs */    PPP_STR_LCP_MAX_CONFIGURE,	/* Set max # xmits for LCP conf-reqs */    PPP_STR_LCP_MAX_FAILURE,	/* Set max # conf-naks for LCP */    PPP_STR_IPCP_RESTART,	/* Set timeout for IPCP */    PPP_STR_IPCP_MAX_TERMINATE,	/* Set max # xmits for IPCP term-reqs */    PPP_STR_IPCP_MAX_CONFIGURE,	/* Set max # xmits for IPCP conf-reqs */    PPP_STR_IPCP_MAX_FAILURE,	/* Set max # conf-naks for IPCP */    PPP_STR_LOCAL_AUTH_NAME,	/* Set local name for authentication */    PPP_STR_REMOTE_AUTH_NAME,	/* Set remote name for authentication */    PPP_STR_PAP_FILE,		/* Set the PAP secrets file */    PPP_STR_PAP_USER_NAME,	/* Set username for PAP auth with peer */    PPP_STR_PAP_PASSWD,		/* Set password for PAP auth with peer */    PPP_STR_PAP_RESTART,	/* Set timeout for PAP */    PPP_STR_PAP_MAX_AUTHREQ,	/* Set max # xmits for PAP auth-reqs */    PPP_STR_CHAP_FILE,		/* Set the CHAP secrets file */    PPP_STR_CHAP_RESTART,	/* Set timeout for CHAP */    PPP_STR_CHAP_INTERVAL,	/* Set interval for CHAP rechallenge */    PPP_STR_CHAP_MAX_CHALLENGE	/* Set max # xmits for CHAP challenge */    }; #endif  /* INCLUDE_PPP */#endif  /* INCLUDE_NETWORK *//* forward declarations */#ifdef __STDC__void 		usrRoot (char *pMemPoolStart, unsigned memPoolSize);void 		usrClock (void);void		usrKernelInit (void);LOCAL void	bootCmdLoop (void);LOCAL char	autoboot (int timeout);LOCAL void	printBootLogo (void);LOCAL void	bootHelp (void);LOCAL STATUS	bootLoad (char *bootString, FUNCPTR *pEntry);LOCAL void	go (FUNCPTR entry);LOCAL void	m (char *adrs);LOCAL void	d (char *adrs, int nwords);LOCAL void	bootExcHandler (int tid);LOCAL void	skipSpace (char **strptr);LOCAL void	printExcMsg (char *string);LOCAL STATUS	getArg (char **ppString, int *pValue, BOOL defaultHex,			BOOL optional);LOCAL void	usrBootLineInit (int startType);LOCAL STATUS	usrBootLineCrack (char *bootString, BOOT_PARAMS *pParams);#ifdef  INCLUDE_NETWORKLOCAL STATUS	netLoad (char *hostName, char *fileName, char *usr, 			 char *passwd, FUNCPTR *pEntry);LOCAL void	netifAdrsPrint (char *ifname);LOCAL STATUS	checkInetAddrField (char *pInetAddr, BOOL subnetMaskOK);LOCAL STATUS	usrNetIfAttach (char *devName, int unitNum, char *inetAdrs);LOCAL STATUS	usrNetIfConfig (char *devName, int unitNum, char *inetAdrs,                                 char *inetName, int netmask);LOCAL STATUS	usrBpInit (char *devName, int unitNum, u_long startAddr);LOCAL STATUS	usrSlipInit (char *pBootDev, int unitNum, char *localAddr, 			     char *peerAddr);LOCAL STATUS    usrPPPInit (char *pBootDev, int unitNum, char *localAddr,                             char *peerAddr);#ifdef INCLUDE_BOOTPLOCAL STATUS	bootpGet (char *pNetDev, char *pBootDevAddr, char *pBootFile,			  char *pHostAddr, int *pMask);#endif#ifdef INCLUDE_DHCPCLOCAL STATUS 	dhcpGet (char *pNetDev, char *pBootDevAddr, char *pBootFile,                         char *pHostAddr, int  *pMask,                         DHCP_LEASE_DATA *pDhcpLease);#endif#endif  /* INCLUDE_NETWORK */#ifdef	INCLUDE_SCSI_BOOTLOCAL STATUS	scsiLoad (int bootDevId, int bootDevLUN, char *fileName,		          FUNCPTR *pEntry);#endif	/* INCLUDE_SCSI_BOOT */#ifdef  INCLUDE_FDLOCAL STATUS    fdLoad (int drive, int type, char *fileName, FUNCPTR *pEntry);#endif  /* INCLUDE_FD */#ifdef  INCLUDE_IDELOCAL STATUS    ideLoad (int drive, int type, char *fileName, FUNCPTR *pEntry);#endif  /* INCLUDE_IDE */#ifdef	INCLUDE_ATALOCAL STATUS	ataLoad (int ctrl, int drive, char *fileName, FUNCPTR *pEntry);#endif	/* INCLUDE_ATA */#ifdef	INCLUDE_PCMCIALOCAL STATUS	pcmciaLoad (int sock, char *fileName, FUNCPTR *pEntry);#endif	/* INCLUDE_PCMCIA */#ifdef	INCLUDE_TFFSLOCAL STATUS    tffsLoad (int drive, int removable, char *fileName, 			  FUNCPTR *pEntry);#endif	/* INCLUDE_TFFS */#ifdef	INCLUDE_TSFS_BOOTLOCAL STATUS	tsfsLoad (char * fileName, FUNCPTR * pEntry);LOCAL void	wdbRebootEventGet (void * pNode, WDB_EVT_DATA *	pEvtData);#endif	/* INCLUDE_TSFS_BOOT */#elsevoid		usrRoot ();void		usrClock ();void		usrKernelInit ();LOCAL void	bootCmdLoop ();LOCAL char	autoboot ();LOCAL void	printBootLogo ();LOCAL void	bootHelp ();LOCAL STATUS	bootLoad ();LOCAL void	go ();LOCAL void	m ();LOCAL void	d ();LOCAL void	bootExcHandler ();LOCAL void	skipSpace ();LOCAL void	printExcMsg ();LOCAL STATUS	getArg ();LOCAL void	usrBootLineInit ();LOCAL STATUS	usrBootLineCrack ();#ifdef  INCLUDE_NETWORKLOCAL STATUS	netLoad ();LOCAL void	netifAdrsPrint ();LOCAL STATUS	checkInetAddrField ();LOCAL STATUS	usrNetIfAttach ();LOCAL STATUS	usrNetIfConfig ();LOCAL STATUS	usrBpInit ();LOCAL STATUS	usrSlipInit ();LOCAL STATUS	usrPPPInit ();#ifdef INCLUDE_BOOTPLOCAL STATUS	bootpGet ();#endif#endif  /* INCLUDE_NETWORK */#ifdef	INCLUDE_SCSI_BOOTLOCAL STATUS	scsiLoad();#endif	/* INCLUDE_SCSI_BOOT */#ifdef  INCLUDE_FDLOCAL STATUS    fdLoad ();#endif  /* INCLUDE_FD */#ifdef  INCLUDE_IDELOCAL STATUS    ideLoad ();#endif  /* INCLUDE_IDE */#ifdef	INCLUDE_ATALOCAL STATUS	ataLoad ();#endif	/* INCLUDE_ATA */#ifdef	INCLUDE_PCMCIALOCAL STATUS	pcmciaLoad ();#endif	/* INCLUDE_PCMCIA */#ifdef	INCLUDE_TFFSLOCAL STATUS    tffsLoad ();#endif	/* INCLUDE_TFFS */#ifdef	INCLUDE_TSFS_BOOTLOCAL STATUS	tsfsLoad ();LOCAL void	wdbRebootEventGet ();#endif	/* INCLUDE_TSFS_BOOT */#endif	/* __STDC__ *//********************************************************************************* usrInit - user-defined system initialization routine** This routine is called by the start-up code in romStart().  It is called* before kernel multi-tasking is enabled, with the interrupts locked out.** It starts by clearing BSS, so all variables are initialized to 0 as per* the C specification.  Then it sets up exception vectors, initializes the* hardware by calling sysHwInit(), and finally starts the kernel with the* usrRoot() task to do the remainder of the initialization.** NOMANUAL*/void usrInit     (    int startType    )    {    /*     * This trap will catch improper loading of the data section.     * We check the magic cookie values to make sure the data section is     * in the expected memory location. We do not want     * to proceed further if the data segment is not correct.     *     * It should be easy to detect entry into the trap using an ICE, JTAG,     * or logic analyzer. Without the trap, the processor is likely to run     * away out of control.     *     * Data section misalignment can occur when there is a change in tool     * chain, build rules, compiler, host utilites,  etc.      */    while (trapValue1 != TRAP_VALUE_1 || trapValue2 != TRAP_VALUE_2)	{	/* infinite loop */;	}    #if (CPU_FAMILY == SPARC)    excWindowInit ();				/* SPARC window management */#endif#if	(CPU_FAMILY == MIPS)    sysGpInit ();				/* MIPS global pointer */#endif	/* (CPU_FAMILY == MIPS) */#ifdef INCLUDE_SYS_HW_INIT_0    /*     * Perform any BSP-specific initialisation that must be done before     * cacheLibInit() is called and/or BSS is cleared.     */    SYS_HW_INIT_0 ();#endif /* INCLUDE_SYS_HW_INIT_0 */    /* configure data and instruction cache if available and leave disabled */#ifdef	INCLUDE_CACHE_SUPPORT    /*     * SPR 73609:  If a cache is not to be enabled, don't require     * its mode to be defined.  Instead, default it to disabled.     */# if (!defined(USER_D_CACHE_ENABLE) && !defined(USER_D_CACHE_MODE))#  define USER_D_CACHE_MODE CACHE_DISABLED# endif	/* !USER_D_CACHE_ENABLE && !USER_D_CACHE_MODE */# if (!defined(USER_I_CACHE_ENABLE) && !defined(USER_I_CACHE_MODE))#  define USER_I_CACHE_MODE CACHE_DISABLED# endif	/* !USER_I_CACHE_ENABLE && !USER_I_CACHE_MODE */    cacheLibInit (USER_I_CACHE_MODE, USER_D_CACHE_MODE);#endif	/* INCLUDE_CACHE_SUPPORT */#if (CPU == SPARClite)    cacheLib.textUpdateRtn = NULL;		/* XXX - mod hist 07u */#endif    /* don't assume bss variables are zero before this call */    bzero (edata, end - edata);		/* zero out bss variables */    sysStartType = startType;    intVecBaseSet ((FUNCPTR *) VEC_BASE_ADRS);	/* set vector base table */#if (CPU_FAMILY == AM29XXX)    excSpillFillInit ();                        /* am29k stack cache managemt */#endif    excVecInit ();				/* install exception vectors */    sysHwInit ();				/* initialize system hardware */    usrKernelInit ();				/* configure the Wind kernel */#if	(CPU==SPARC) || (CPU_FAMILY==I80X86)	/* XXX workaround for sun1e */#undef USER_I_CACHE_ENABLE	/* XXX disable instruction cache */#endif	/* (CPU==SPARC) || (CPU_FAMILY==I80X86)	*/#ifdef	INCLUDE_CACHE_SUPPORT#ifdef 	USER_I_CACHE_ENABLE    cacheEnable (INSTRUCTION_CACHE);		/* enable instruction cache */#endif	/* USER_I_CACHE_ENABLE */#endif	/* INCLUDE_CACHE_SUPPORT */    /* start the kernel specifying usrRoot as the root task */    kernelInit ((FUNCPTR) usrRoot, ROOT_STACK_SIZE,		(char *) MEM_POOL_START_ADRS,		sysMemTop (), ISR_STACK_SIZE, INT_LOCK_LEVEL);    }/********************************************************************************* usrRoot - user-defined root task** The root task performs any initialization that should be done* subsequent to the kernel initialization.** It initializes the I/O system, install drivers, create devices,* sets up the network, etc., as necessary for the particular configuration.* It may also create the system symbol table if one is to be included.* Finally, it spawns the boot command loop task.** NOMANUAL*/void usrRoot    (    char *      pMemPoolStart,          /* start of system memory partition */    unsigned    memPoolSize             /* initial size of mem pool */    )    {    char tyName [20];    int ix;#ifdef INCLUDE_END    int count;    END_TBL_ENTRY* pDevTbl;#endif /* INCLUDE_END */    /* Initialize the memory pool before initializing any other package.     * The memory associated with the root task will be reclaimed at the     * completion of its activities.                                      */    memInit (pMemPoolStart, memPoolSize);/* XXX select between memPartLibInit */    /* set up system timer */    sysClkConnect ((FUNCPTR) usrClock, 0);/* connect clock interrupt routine */    sysClkRateSet (SYS_CLK_RATE); 	  /* set system clock rate */    sysClkEnable ();			  /* start it */    /*     * The select library needs to be initialized before the tyLib module     * since the _func_selWakeupListInit FUNCPTR is required (SPR #3314).     * The installation of the select task delete hook is not performed     * for boot ROMs.     */#ifdef INCLUDE_SELECT    selectInit (NUM_FILES);#endif  /* INCLUDE_SELECT */    /* initialize I/O and file system */    iosInit (NUM_DRIVERS, NUM_FILES, "/null");    consoleFd = NONE;    /* install driver for on-board serial ports and make devices */#ifdef  INCLUDE_TYCODRV_5_2#ifdef  INCLUDE_TTY_DEV    if (NUM_TTY > 0)        {        tyCoDrv ();                             /* install console driver */        for (ix = 0; ix < NUM_TTY; ix++)        /* create serial devices */            {            sprintf (tyName, "%s%d", "/tyCo/", ix);            (void) tyCoDevCreate (tyName, ix, 512, 512);            if (ix == CONSOLE_TTY)                strcpy (consoleName, tyName);   /* store console name */            }        consoleFd = open (consoleName, O_RDWR, 0);        /* set baud rate */        (void) ioctl (consoleFd, FIOBAUDRATE, CONSOLE_BAUD_RATE);        (void) ioctl (consoleFd, FIOSETOPTIONS,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av集中营| 欧美日韩亚洲综合一区| 91久久国产综合久久| 日韩一级二级三级精品视频| 国产精品色在线观看| 日韩中文字幕区一区有砖一区| 国产精品99久久久久| 欧美另类z0zxhd电影| 亚洲婷婷在线视频| 国产美女娇喘av呻吟久久| 欧美一区二区三区免费大片 | 亚洲欧美日韩中文播放| 一区二区三区成人在线视频| 激情综合色综合久久综合| 欧美日韩视频一区二区| 国产精品夫妻自拍| 国产成人免费视频精品含羞草妖精 | 亚洲超碰精品一区二区| 99re视频精品| 欧美国产国产综合| 国产在线视频不卡二| 欧美精品一卡两卡| 亚洲一线二线三线视频| 波多野结衣一区二区三区| 国产色综合久久| 韩国女主播成人在线| 日韩一区二区三区视频在线观看| 午夜视频一区二区| 欧美色综合影院| 一区二区三区日韩精品| 日本韩国精品一区二区在线观看| 中文字幕在线一区免费| 成人午夜碰碰视频| 欧美高清在线一区二区| 从欧美一区二区三区| 中文字幕精品三区| 波多野结衣一区二区三区| 国产精品传媒视频| 色欧美88888久久久久久影院| 亚洲摸摸操操av| 欧美日韩在线一区二区| 亚洲一区二区三区中文字幕| 欧美亚洲国产一卡| 日韩高清一区二区| 26uuu国产一区二区三区| 国产成人精品亚洲午夜麻豆| 亚洲国产高清不卡| 日本精品视频一区二区| 亚洲午夜一区二区三区| 欧美精品xxxxbbbb| 狠狠色丁香久久婷婷综合_中| 久久久亚洲精品石原莉奈| 丰满岳乱妇一区二区三区| 国产精品理论在线观看| 一本色道久久综合亚洲91| 亚洲成人777| 日韩欧美在线1卡| 国产成人亚洲综合色影视| 亚洲欧美日韩系列| 欧美日本一区二区三区| 麻豆国产91在线播放| 国产精品区一区二区三区| 色婷婷精品大在线视频| 青青草一区二区三区| 国产精品麻豆视频| 欧美军同video69gay| 国产成人精品影视| 亚洲国产精品久久久男人的天堂| 日韩区在线观看| 91色综合久久久久婷婷| 青青草91视频| 亚洲欧美在线观看| 欧美白人最猛性xxxxx69交| 成人av动漫在线| 久久精品国产一区二区三区免费看| 欧美激情一区二区三区蜜桃视频| 精品视频999| 成人app在线| 青青草97国产精品免费观看 | 午夜精品视频一区| 日本一区二区电影| 91精品国产手机| 91影视在线播放| 久久成人精品无人区| 亚洲黄网站在线观看| 国产欧美一区二区精品婷婷 | 另类中文字幕网| 一级中文字幕一区二区| 久久久久久久久岛国免费| 欧美日韩成人激情| 91免费国产视频网站| 国产一区二区91| 美女网站在线免费欧美精品| 亚洲男人的天堂一区二区| 久久精品视频免费| 欧美不卡视频一区| 欧美精品自拍偷拍| 色综合久久综合网97色综合| 成人中文字幕在线| 国产在线播放一区三区四| 午夜成人在线视频| 亚洲午夜激情av| 亚洲美女免费视频| 国产精品对白交换视频 | 国产不卡一区视频| 免费在线欧美视频| 日韩国产高清在线| 亚洲成人动漫av| 亚洲国产精品一区二区www | 中文字幕在线不卡| 国产亚洲一区二区三区四区| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 国产黄色91视频| 久久99精品久久久久久动态图 | 欧美一区二区三区男人的天堂| 在线观看91视频| 在线观看视频一区| 欧洲精品一区二区| 在线观看免费视频综合| 91国在线观看| 欧美视频在线播放| 在线观看不卡视频| 在线不卡的av| 精品免费视频一区二区| 日韩免费一区二区| 精品久久久久av影院| www日韩大片| 国产欧美一区二区三区鸳鸯浴 | 欧美性猛交xxxxxx富婆| 欧美性猛交一区二区三区精品| 欧美日韩一级大片网址| 欧美人xxxx| 91精品国产免费| 精品国产一区二区精华| 久久久99免费| 中文字幕亚洲区| 亚洲福中文字幕伊人影院| 美女视频网站黄色亚洲| 国产呦精品一区二区三区网站| 国产白丝网站精品污在线入口| 99久久免费精品高清特色大片| 色成人在线视频| 日韩欧美卡一卡二| 久久精品免费在线观看| 亚洲精品国产无套在线观| 婷婷成人综合网| 国产精品一区二区在线观看不卡| 白白色 亚洲乱淫| 91精品久久久久久久91蜜桃| 久久久久久久久久久久久久久99| 亚洲欧美中日韩| 免费高清在线视频一区·| 福利91精品一区二区三区| 欧美日韩在线观看一区二区| 精品久久久久久亚洲综合网| 综合中文字幕亚洲| 免费观看成人鲁鲁鲁鲁鲁视频| 波多野洁衣一区| 精品视频1区2区| 中文字幕一区二区三区不卡| 丝袜亚洲另类丝袜在线| 成人美女视频在线观看| 欧美一区二区三区免费视频| 国产精品高潮呻吟| 老司机免费视频一区二区 | 成人黄色软件下载| 欧美军同video69gay| 亚洲区小说区图片区qvod| 精品一二三四在线| 欧美日韩一二三| 亚洲免费在线看| 国产1区2区3区精品美女| 欧美一区二区三区日韩| 一区二区在线观看免费| 国产成人精品亚洲午夜麻豆| 欧美精品v国产精品v日韩精品 | 国产精品免费aⅴ片在线观看| 日本欧美久久久久免费播放网| 日本乱人伦一区| 亚洲人精品午夜| 成人性视频网站| 久久久久久久久蜜桃| 免费成人在线播放| 欧美日韩在线一区二区| 亚洲猫色日本管| 色综合色综合色综合色综合色综合| 精品久久久久99| 麻豆国产精品777777在线| 欧美丰满一区二区免费视频| 亚洲国产你懂的| 在线观看视频一区二区欧美日韩| 国产精品国产三级国产aⅴ入口 | 欧美日韩一级片在线观看| 中文字幕在线观看一区二区| 国产黑丝在线一区二区三区| 欧美xxx久久| 精一区二区三区| 欧美精品一区二区三区四区| 狠狠色综合播放一区二区| 精品国产乱码久久久久久久|