⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 F:worksip2440a board可启动u-boot-like.tar.gz F:worksip2440a board可启动u-boot-like.tar.gz
💻
📖 第 1 页 / 共 5 页
字号:
		CFG_CMD_HWFLOW	* RTS/CTS hw flow control		CFG_CMD_I2C	* I2C serial bus support		CFG_CMD_IDE	* IDE harddisk support		CFG_CMD_IMI	  iminfo		CFG_CMD_IMLS	  List all found images		CFG_CMD_IMMAP	* IMMR dump support		CFG_CMD_IRQ	* irqinfo		CFG_CMD_ITEST	  Integer/string test of 2 values		CFG_CMD_JFFS2	* JFFS2 Support		CFG_CMD_KGDB	* kgdb		CFG_CMD_LOADB	  loadb		CFG_CMD_LOADS	  loads		CFG_CMD_MEMORY	  md, mm, nm, mw, cp, cmp, crc, base,				  loop, loopw, mtest		CFG_CMD_MISC	  Misc functions like sleep etc		CFG_CMD_MMC	* MMC memory mapped support		CFG_CMD_MII	* MII utility commands		CFG_CMD_NAND	* NAND support		CFG_CMD_NET	  bootp, tftpboot, rarpboot		CFG_CMD_PCI	* pciinfo		CFG_CMD_PCMCIA	* PCMCIA support		CFG_CMD_PING	* send ICMP ECHO_REQUEST to network host		CFG_CMD_PORTIO	* Port I/O		CFG_CMD_REGINFO * Register dump		CFG_CMD_RUN	  run command in env variable		CFG_CMD_SAVES	* save S record dump		CFG_CMD_SCSI	* SCSI Support		CFG_CMD_SDRAM	* print SDRAM configuration information		CFG_CMD_SETGETDCR Support for DCR Register access (4xx only)		CFG_CMD_SPI	* SPI serial bus support		CFG_CMD_USB	* USB support		CFG_CMD_VFD	* VFD support (TRAB)		CFG_CMD_BSP	* Board SPecific functions		CFG_CMD_CDP	* Cisco Discover Protocol support		-----------------------------------------------		CFG_CMD_ALL	all		CONFIG_CMD_DFL	Default configuration; at the moment				this is includes all commands, except				the ones marked with "*" in the list				above.		If you don't define CONFIG_COMMANDS it defaults to		CONFIG_CMD_DFL in include/cmd_confdefs.h. A board can		override the default settings in the respective		include file.		EXAMPLE: If you want all functions except of network		support you can write:		#define CONFIG_COMMANDS (CFG_CMD_ALL & ~CFG_CMD_NET)	Note:	Don't enable the "icache" and "dcache" commands		(configuration option CFG_CMD_CACHE) unless you know		what you (and your U-Boot-aesop users) are doing. Data		cache cannot be enabled on systems like the 8xx or		8260 (where accesses to the IMMR region must be		uncached), and it cannot be disabled on all other		systems where we (mis-) use the data cache to hold an		initial stack and some data.		XXX - this list needs to get updated!- Watchdog:		CONFIG_WATCHDOG		If this variable is defined, it enables watchdog		support. There must be support in the platform specific		code for a watchdog. For the 8xx and 8260 CPUs, the		SIU Watchdog feature is enabled in the SYPCR		register.- U-Boot-aesop Version:		CONFIG_VERSION_VARIABLE		If this variable is defined, an environment variable		named "ver" is created by U-Boot-aesop showing the U-Boot		version as printed by the "version" command.		This variable is readonly.- Real-Time Clock:		When CFG_CMD_DATE is selected, the type of the RTC		has to be selected, too. Define exactly one of the		following options:		CONFIG_RTC_MPC8xx	- use internal RTC of MPC8xx		CONFIG_RTC_PCF8563	- use Philips PCF8563 RTC		CONFIG_RTC_MC146818	- use MC146818 RTC		CONFIG_RTC_DS1307	- use Maxim, Inc. DS1307 RTC		CONFIG_RTC_DS1337	- use Maxim, Inc. DS1337 RTC		CONFIG_RTC_DS1338	- use Maxim, Inc. DS1338 RTC		CONFIG_RTC_DS164x	- use Dallas DS164x RTC		CONFIG_RTC_MAX6900	- use Maxim, Inc. MAX6900 RTC		Note that if the RTC uses I2C, then the I2C interface		must also be configured. See I2C Support, below.- Timestamp Support:		When CONFIG_TIMESTAMP is selected, the timestamp		(date and time) of an image is printed by image		commands like bootm or iminfo. This option is		automatically enabled when you select CFG_CMD_DATE .- Partition Support:		CONFIG_MAC_PARTITION and/or CONFIG_DOS_PARTITION		and/or CONFIG_ISO_PARTITION		If IDE or SCSI support	is  enabled  (CFG_CMD_IDE  or		CFG_CMD_SCSI) you must configure support for at least		one partition type as well.- IDE Reset method:		CONFIG_IDE_RESET_ROUTINE - this is defined in several		board configurations files but used nowhere!		CONFIG_IDE_RESET - is this is defined, IDE Reset will		be performed by calling the function			ide_set_reset(int reset)		which has to be defined in a board specific file- ATAPI Support:		CONFIG_ATAPI		Set this to enable ATAPI support.- LBA48 Support		CONFIG_LBA48		Set this to enable support for disks larger than 137GB		Also look at CFG_64BIT_LBA ,CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL		Whithout these , LBA48 support uses 32bit variables and will 'only'		support disks up to 2.1TB.		CFG_64BIT_LBA:			When enabled, makes the IDE subsystem use 64bit sector addresses.			Default is 32bit.- SCSI Support:		At the moment only there is only support for the		SYM53C8XX SCSI controller; define		CONFIG_SCSI_SYM53C8XX to enable it.		CFG_SCSI_MAX_LUN [8], CFG_SCSI_MAX_SCSI_ID [7] and		CFG_SCSI_MAX_DEVICE [CFG_SCSI_MAX_SCSI_ID *		CFG_SCSI_MAX_LUN] can be adjusted to define the		maximum numbers of LUNs, SCSI ID's and target		devices.		CFG_SCSI_SYM53C8XX_CCF to fix clock timing (80Mhz)- NETWORK Support (PCI):		CONFIG_E1000		Support for Intel 8254x gigabit chips.		CONFIG_EEPRO100		Support for Intel 82557/82559/82559ER chips.		Optional CONFIG_EEPRO100_SROM_WRITE enables eeprom		write routine for first time initialisation.		CONFIG_TULIP		Support for Digital 2114x chips.		Optional CONFIG_TULIP_SELECT_MEDIA for board specific		modem chip initialisation (KS8761/QS6611).		CONFIG_NATSEMI		Support for National dp83815 chips.		CONFIG_NS8382X		Support for National dp8382[01] gigabit chips.- NETWORK Support (other):		CONFIG_DRIVER_LAN91C96		Support for SMSC's LAN91C96 chips.			CONFIG_LAN91C96_BASE			Define this to hold the physical address			of the LAN91C96's I/O space			CONFIG_LAN91C96_USE_32_BIT			Define this to enable 32 bit addressing		CONFIG_DRIVER_SMC91111		Support for SMSC's LAN91C111 chip			CONFIG_SMC91111_BASE			Define this to hold the physical address			of the device (I/O space)			CONFIG_SMC_USE_32_BIT			Define this if data bus is 32 bits			CONFIG_SMC_USE_IOFUNCS			Define this to use i/o functions instead of macros			(some hardware wont work with macros)- USB Support:		At the moment only the UHCI host controller is		supported (PIP405, MIP405, MPC5200); define		CONFIG_USB_UHCI to enable it.		define CONFIG_USB_KEYBOARD to enable the USB Keyboard		and define CONFIG_USB_STORAGE to enable the USB		storage devices.		Note:		Supported are USB Keyboards and USB Floppy drives		(TEAC FD-05PUB).		MPC5200 USB requires additional defines:			CONFIG_USB_CLOCK				for 528 MHz Clock: 0x0001bbbb			CONFIG_USB_CONFIG				for differential drivers: 0x00001000				for single ended drivers: 0x00005000- MMC Support:		The MMC controller on the Intel PXA is supported. To		enable this define CONFIG_MMC. The MMC can be		accessed from the boot prompt by mapping the device		to physical memory similar to flash. Command line is		enabled with CFG_CMD_MMC. The MMC driver also works with		the FAT fs. This is enabled with CFG_CMD_FAT.- Journaling Flash filesystem support:		CONFIG_JFFS2_NAND, CONFIG_JFFS2_NAND_OFF, CONFIG_JFFS2_NAND_SIZE,		CONFIG_JFFS2_NAND_DEV		Define these for a default partition on a NAND device		CFG_JFFS2_FIRST_SECTOR,		CFG_JFFS2_FIRST_BANK, CFG_JFFS2_NUM_BANKS		Define these for a default partition on a NOR device		CFG_JFFS_CUSTOM_PART		Define this to create an own partition. You have to provide a		function struct part_info* jffs2_part_info(int part_num)		If you define only one JFFS2 partition you may also want to		#define CFG_JFFS_SINGLE_PART	1		to disable the command chpart. This is the default when you		have not defined a custom partition- Keyboard Support:		CONFIG_ISA_KEYBOARD		Define this to enable standard (PC-Style) keyboard		support		CONFIG_I8042_KBD		Standard PC keyboard driver with US (is default) and		GERMAN key layout (switch via environment 'keymap=de') support.		Export function i8042_kbd_init, i8042_tstc and i8042_getc		for cfb_console. Supports cursor blinking.- Video support:		CONFIG_VIDEO		Define this to enable video support (for output to		video).		CONFIG_VIDEO_CT69000		Enable Chips & Technologies 69000 Video chip		CONFIG_VIDEO_SMI_LYNXEM		Enable Silicon Motion SMI 712/710/810 Video chip. The		video output is selected via environment 'videoout'		(1 = LCD and 2 = CRT). If videoout is undefined, CRT is		assumed.		For the CT69000 and SMI_LYNXEM drivers, videomode is		selected via environment 'videomode'. Two diferent ways		are possible:		- "videomode=num"   'num' is a standard LiLo mode numbers.		Following standard modes are supported	(* is default):		      Colors	640x480 800x600 1024x768 1152x864 1280x1024		-------------+---------------------------------------------		      8 bits |	0x301*	0x303	 0x305	  0x161	    0x307		     15 bits |	0x310	0x313	 0x316	  0x162	    0x319		     16 bits |	0x311	0x314	 0x317	  0x163	    0x31A		     24 bits |	0x312	0x315	 0x318	    ?	    0x31B		-------------+---------------------------------------------		(i.e. setenv videomode 317; saveenv; reset;)		- "videomode=bootargs" all the video parameters are parsed		from the bootargs. (See drivers/videomodes.c)		CONFIG_VIDEO_SED13806		Enable Epson SED13806 driver. This driver supports 8bpp		and 16bpp modes defined by CONFIG_VIDEO_SED13806_8BPP		or CONFIG_VIDEO_SED13806_16BPP- Keyboard Support:		CONFIG_KEYBOARD		Define this to enable a custom keyboard support.		This simply calls drv_keyboard_init() which must be		defined in your board-specific files.		The only board using this so far is RBC823.- LCD Support:	CONFIG_LCD		Define this to enable LCD support (for output to LCD		display); also select one of the supported displays		by defining one of these:		CONFIG_NEC_NL6448AC33:			NEC NL6448AC33-18. Active, color, single scan.		CONFIG_NEC_NL6448BC20			NEC NL6448BC20-08. 6.5", 640x480.			Active, color, single scan.		CONFIG_NEC_NL6448BC33_54			NEC NL6448BC33-54. 10.4", 640x480.			Active, color, single scan.		CONFIG_SHARP_16x9			Sharp 320x240. Active, color, single scan.			It isn't 16x9, and I am not sure what it is.		CONFIG_SHARP_LQ64D341			Sharp LQ64D341 display, 640x480.			Active, color, single scan.		CONFIG_HLD1045			HLD1045 display, 640x480.			Active, color, single scan.		CONFIG_OPTREX_BW			Optrex	 CBL50840-2 NF-FW 99 22 M5			or			Hitachi	 LMG6912RPFC-00T			or			Hitachi	 SP14Q002			320x240. Black & white.		Normally display is black on white background; define		CFG_WHITE_ON_BLACK to get it inverted.- Splash Screen Support: CONFIG_SPLASH_SCREEN		If this option is set, the environment is checked for		a variable "splashimage". If found, the usual display		of logo, copyright and system information on the LCD		is suppressed and the BMP image at the address		specified in "splashimage" is loaded instead. The		console is redirected to the "nulldev", too. This		allows for a "silent" boot where a splash screen is		loaded very quickly after power-on.- Compression support:		CONFIG_BZIP2		If this option is set, support for bzip2 compressed		images is included. If not, only uncompressed and gzip		compressed images are supported.		NOTE: the bzip2 algorithm requires a lot of RAM, so		the malloc area (as defined by CFG_MALLOC_LEN) should		be at least 4MB.- MII/PHY support:		CONFIG_PHY_ADDR		The address of PHY on MII bus.		CONFIG_PHY_CLOCK_FREQ (ppc4xx)		The clock frequency of the MII bus		CONFIG_PHY_GIGE		If this option is set, support for speed/duplex		detection of Gigabit PHY is included.		CONFIG_PHY_RESET_DELAY		Some PHY like Intel LXT971A need extra delay after		reset before any MII register access is possible.		For such PHY, set this option to the usec delay		required. (minimum 300usec for LXT971A)		CONFIG_PHY_CMD_DELAY (ppc4xx)		Some PHY like Intel LXT971A need extra delay after		command issued before MII status register can be read- Ethernet address:		CONFIG_ETHADDR		CONFIG_ETH2ADDR		CONFIG_ETH3ADDR		Define a default value for ethernet address to use		for the respective ethernet interface, in case this		is not determined automatically.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -