Convert CONFIG_CMD_IRQ to Kconfig
This converts the following to Kconfig: CONFIG_CMD_IRQ Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
59e12a4a8c
commit
1b330894bd
1
README
1
README
@ -852,7 +852,6 @@ The following options need to be configured:
|
|||||||
CONFIG_CMD_IMLS_NAND * List all images found in NAND flash
|
CONFIG_CMD_IMLS_NAND * List all images found in NAND flash
|
||||||
CONFIG_CMD_IMPORTENV * import an environment
|
CONFIG_CMD_IMPORTENV * import an environment
|
||||||
CONFIG_CMD_INI * import data from an ini file into the env
|
CONFIG_CMD_INI * import data from an ini file into the env
|
||||||
CONFIG_CMD_IRQ * irqinfo
|
|
||||||
CONFIG_CMD_ITEST Integer/string test of 2 values
|
CONFIG_CMD_ITEST Integer/string test of 2 values
|
||||||
CONFIG_CMD_KGDB * kgdb
|
CONFIG_CMD_KGDB * kgdb
|
||||||
CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader)
|
CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader)
|
||||||
|
@ -34,6 +34,7 @@ config M68K
|
|||||||
config MICROBLAZE
|
config MICROBLAZE
|
||||||
bool "MicroBlaze architecture"
|
bool "MicroBlaze architecture"
|
||||||
select SUPPORT_OF_CONTROL
|
select SUPPORT_OF_CONTROL
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
config MIPS
|
config MIPS
|
||||||
bool "MIPS architecture"
|
bool "MIPS architecture"
|
||||||
@ -92,6 +93,7 @@ config X86
|
|||||||
imply CMD_FPGA_LOADMK
|
imply CMD_FPGA_LOADMK
|
||||||
imply CMD_GETTIME
|
imply CMD_GETTIME
|
||||||
imply CMD_IO
|
imply CMD_IO
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
config XTENSA
|
config XTENSA
|
||||||
bool "Xtensa architecture"
|
bool "Xtensa architecture"
|
||||||
|
@ -34,6 +34,7 @@ config MPC85xx
|
|||||||
select SYS_FSL_DDR_BE
|
select SYS_FSL_DDR_BE
|
||||||
imply USB_EHCI_HCD if USB
|
imply USB_EHCI_HCD if USB
|
||||||
imply CMD_HASH
|
imply CMD_HASH
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
config MPC86xx
|
config MPC86xx
|
||||||
bool "MPC86xx"
|
bool "MPC86xx"
|
||||||
@ -46,6 +47,7 @@ config 8xx
|
|||||||
config 4xx
|
config 4xx
|
||||||
bool "PPC4xx"
|
bool "PPC4xx"
|
||||||
select CREATE_ARCH_SYMLINK
|
select CREATE_ARCH_SYMLINK
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
@ -59,6 +59,7 @@ config TARGET_O3DNT
|
|||||||
|
|
||||||
config TARGET_DIGSY_MTC
|
config TARGET_DIGSY_MTC
|
||||||
bool "Support digsy_mtc"
|
bool "Support digsy_mtc"
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
config TARGET_PCM030
|
config TARGET_PCM030
|
||||||
bool "Support pcm030"
|
bool "Support pcm030"
|
||||||
|
@ -49,6 +49,7 @@ config TARGET_MPC8349EMDS
|
|||||||
|
|
||||||
config TARGET_MPC8349ITX
|
config TARGET_MPC8349ITX
|
||||||
bool "Support MPC8349ITX"
|
bool "Support MPC8349ITX"
|
||||||
|
imply CMD_IRQ
|
||||||
|
|
||||||
config TARGET_MPC837XEMDS
|
config TARGET_MPC837XEMDS
|
||||||
bool "Support MPC837XEMDS"
|
bool "Support MPC837XEMDS"
|
||||||
|
@ -1192,6 +1192,14 @@ config CMD_DIAG
|
|||||||
available tests and running either all the tests, or specific tests
|
available tests and running either all the tests, or specific tests
|
||||||
identified by name.
|
identified by name.
|
||||||
|
|
||||||
|
config CMD_IRQ
|
||||||
|
bool "irq - Show information about interrupts"
|
||||||
|
depends on !ARM && !MIPS && !SH && !MPC512X
|
||||||
|
help
|
||||||
|
This enables two commands:
|
||||||
|
|
||||||
|
interrupts - enable or disable interrupts
|
||||||
|
irqinfo - print device-specific interrupt information
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
config CMD_UBI
|
config CMD_UBI
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_CMD_EEPROM=y
|
|||||||
# CONFIG_CMD_NET is not set
|
# CONFIG_CMD_NET is not set
|
||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_BSP=y
|
CONFIG_CMD_BSP=y
|
||||||
|
CONFIG_CMD_IRQ=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_CMD_PING=y
|
|||||||
CONFIG_CMD_BSP=y
|
CONFIG_CMD_BSP=y
|
||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_MAC_PARTITION=y
|
CONFIG_MAC_PARTITION=y
|
||||||
CONFIG_ISO_PARTITION=y
|
CONFIG_ISO_PARTITION=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -27,6 +27,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_FSL_CAAM=y
|
CONFIG_FSL_CAAM=y
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
@ -27,6 +27,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_FSL_CAAM=y
|
CONFIG_FSL_CAAM=y
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_DM=y
|
CONFIG_DM=y
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
@ -28,6 +28,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_FSL_CAAM=y
|
CONFIG_FSL_CAAM=y
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
@ -20,6 +20,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_FSL_CAAM=y
|
CONFIG_FSL_CAAM=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
CONFIG_SPI_FLASH_STMICRO=y
|
CONFIG_SPI_FLASH_STMICRO=y
|
||||||
|
@ -17,6 +17,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_FSL_CAAM=y
|
CONFIG_FSL_CAAM=y
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
@ -16,6 +16,7 @@ CONFIG_CMD_MMC=y
|
|||||||
# CONFIG_CMD_SETEXPR is not set
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_TPM=y
|
CONFIG_CMD_TPM=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_DOS_PARTITION=y
|
CONFIG_DOS_PARTITION=y
|
||||||
CONFIG_DM=y
|
CONFIG_DM=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -16,6 +16,7 @@ CONFIG_CMD_MMC=y
|
|||||||
# CONFIG_CMD_SETEXPR is not set
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_TPM=y
|
CONFIG_CMD_TPM=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_DOS_PARTITION=y
|
CONFIG_DOS_PARTITION=y
|
||||||
CONFIG_DM=y
|
CONFIG_DM=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_CMD_I2C=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_LOOPW=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_LOOPW=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -24,6 +24,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_CACHE=y
|
CONFIG_CMD_CACHE=y
|
||||||
CONFIG_CMD_DIAG=y
|
CONFIG_CMD_DIAG=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_CMD_DHCP=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_BMP=y
|
CONFIG_CMD_BMP=y
|
||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
|
CONFIG_CMD_IRQ=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_USB=y
|
CONFIG_USB=y
|
||||||
|
@ -25,6 +25,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_CMD_UBI=y
|
CONFIG_CMD_UBI=y
|
||||||
CONFIG_DOS_PARTITION=y
|
CONFIG_DOS_PARTITION=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -25,6 +25,7 @@ CONFIG_CMD_MII=y
|
|||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_CMD_UBI=y
|
CONFIG_CMD_UBI=y
|
||||||
CONFIG_DOS_PARTITION=y
|
CONFIG_DOS_PARTITION=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_LOOPW=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_CMD_I2C=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_CMD_I2C=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_CMD_I2C=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_CMD_I2C=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_CMD_I2C=y
|
|||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
|
@ -17,11 +17,12 @@ CONFIG_CMD_DHCP=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
|
||||||
CONFIG_CMD_SNTP=y
|
CONFIG_CMD_SNTP=y
|
||||||
CONFIG_CMD_BMP=y
|
CONFIG_CMD_BMP=y
|
||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_CMD_PING=y
|
|||||||
CONFIG_CMD_FAT=y
|
CONFIG_CMD_FAT=y
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
CONFIG_CMD_DIAG=y
|
CONFIG_CMD_DIAG=y
|
||||||
|
CONFIG_CMD_IRQ=y
|
||||||
CONFIG_MAC_PARTITION=y
|
CONFIG_MAC_PARTITION=y
|
||||||
CONFIG_LED_STATUS=y
|
CONFIG_LED_STATUS=y
|
||||||
CONFIG_LED_STATUS0=y
|
CONFIG_LED_STATUS0=y
|
||||||
|
@ -17,6 +17,7 @@ CONFIG_CMD_PING=y
|
|||||||
CONFIG_CMD_SNTP=y
|
CONFIG_CMD_SNTP=y
|
||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
CONFIG_CMD_IRQ=y
|
||||||
CONFIG_DS4510=y
|
CONFIG_DS4510=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_CMD_SNTP=y
|
|||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_CMD_SNTP=y
|
|||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
# CONFIG_CMD_HASH is not set
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
CONFIG_SYS_FSL_DDR2=y
|
CONFIG_SYS_FSL_DDR2=y
|
||||||
CONFIG_DS4510=y
|
CONFIG_DS4510=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -15,10 +15,11 @@ CONFIG_CMD_USB=y
|
|||||||
CONFIG_CMD_DHCP=y
|
CONFIG_CMD_DHCP=y
|
||||||
CONFIG_CMD_MII=y
|
CONFIG_CMD_MII=y
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
# CONFIG_CMD_HASH is not set
|
|
||||||
CONFIG_CMD_SNTP=y
|
CONFIG_CMD_SNTP=y
|
||||||
CONFIG_CMD_DATE=y
|
CONFIG_CMD_DATE=y
|
||||||
|
# CONFIG_CMD_HASH is not set
|
||||||
CONFIG_CMD_JFFS2=y
|
CONFIG_CMD_JFFS2=y
|
||||||
|
# CONFIG_CMD_IRQ is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
CONFIG_MTD_NOR_FLASH=y
|
CONFIG_MTD_NOR_FLASH=y
|
||||||
CONFIG_SYS_NS16550=y
|
CONFIG_SYS_NS16550=y
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* Alphabetical list of all possible commands.
|
* Alphabetical list of all possible commands.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CONFIG_CMD_IRQ /* irqinfo */
|
|
||||||
#define CONFIG_CMD_KGDB /* kgdb */
|
#define CONFIG_CMD_KGDB /* kgdb */
|
||||||
#define CONFIG_CMD_MFSL /* FSL support for Microblaze */
|
#define CONFIG_CMD_MFSL /* FSL support for Microblaze */
|
||||||
#define CONFIG_CMD_MTDPARTS /* mtd parts support */
|
#define CONFIG_CMD_MTDPARTS /* mtd parts support */
|
||||||
|
@ -702,7 +702,6 @@ unsigned long get_board_ddr_clk(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -293,7 +293,6 @@ extern unsigned long get_sdram_size(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -520,7 +520,6 @@ combinations. this should be removed later
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -436,7 +436,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -46,7 +46,6 @@
|
|||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#define CONFIG_SUPPORT_VFAT
|
#define CONFIG_SUPPORT_VFAT
|
||||||
|
|
||||||
|
@ -46,7 +46,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_CMD_SAVES
|
#define CONFIG_CMD_SAVES
|
||||||
|
@ -478,7 +478,6 @@ boards, we say we have two, but don't display a message if we find only one. */
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_SDRAM
|
#define CONFIG_CMD_SDRAM
|
||||||
|
|
||||||
#if defined(CONFIG_COMPACT_FLASH) || defined(CONFIG_SATA_SIL3114) \
|
#if defined(CONFIG_COMPACT_FLASH) || defined(CONFIG_SATA_SIL3114) \
|
||||||
|
@ -589,8 +589,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -315,7 +315,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
@ -342,7 +342,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -348,7 +348,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -461,7 +461,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -340,7 +340,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -354,7 +354,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -355,7 +355,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -448,7 +448,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -547,7 +547,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -724,7 +724,6 @@ extern unsigned long get_sdram_size(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
@ -593,7 +593,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -241,7 +241,6 @@ extern unsigned long get_clock_freq(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if defined(CONFIG_PCI)
|
#if defined(CONFIG_PCI)
|
||||||
|
@ -580,7 +580,6 @@ unsigned long get_board_sys_clk(unsigned long dummy);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
@ -38,7 +38,6 @@
|
|||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#define CONFIG_BOOTCOMMAND "" /* autoboot command */
|
#define CONFIG_BOOTCOMMAND "" /* autoboot command */
|
||||||
|
|
||||||
|
@ -38,7 +38,6 @@
|
|||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_SCSI
|
#define CONFIG_SCSI
|
||||||
#define CONFIG_CMD_SDRAM
|
#define CONFIG_CMD_SDRAM
|
||||||
|
@ -55,7 +55,6 @@
|
|||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_NAND
|
#define CONFIG_CMD_NAND
|
||||||
|
|
||||||
#define CONFIG_SUPPORT_VFAT
|
#define CONFIG_SUPPORT_VFAT
|
||||||
|
@ -48,7 +48,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
@ -779,7 +779,6 @@ unsigned long get_board_ddr_clk(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -789,7 +789,6 @@ unsigned long get_board_ddr_clk(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -658,7 +658,6 @@ unsigned long get_board_ddr_clk(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -771,7 +771,6 @@ $(SRCTREE)/board/freescale/t104xrdb/t1042d4_sd_rcw.cfg
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -744,7 +744,6 @@ unsigned long get_board_ddr_clk(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -272,7 +272,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
@ -421,8 +421,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -53,7 +53,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
|
||||||
|
@ -51,7 +51,6 @@
|
|||||||
*/
|
*/
|
||||||
#if defined(CONFIG_440)
|
#if defined(CONFIG_440)
|
||||||
#endif
|
#endif
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -341,7 +341,6 @@
|
|||||||
|
|
||||||
#ifndef CONFIG_TRAILBLAZER
|
#ifndef CONFIG_TRAILBLAZER
|
||||||
|
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -593,7 +593,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -411,7 +411,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
@ -85,7 +85,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_CMD_SAVES
|
#define CONFIG_CMD_SAVES
|
||||||
|
@ -54,7 +54,6 @@
|
|||||||
/*
|
/*
|
||||||
* Commands additional to the ones defined in amcc-common.h
|
* Commands additional to the ones defined in amcc-common.h
|
||||||
*/
|
*/
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
||||||
|
@ -52,7 +52,6 @@
|
|||||||
/*
|
/*
|
||||||
* Commands additional to the ones defined in amcc-common.h
|
* Commands additional to the ones defined in amcc-common.h
|
||||||
*/
|
*/
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
||||||
|
@ -54,7 +54,6 @@
|
|||||||
/*
|
/*
|
||||||
* Commands additional to the ones defined in amcc-common.h
|
* Commands additional to the ones defined in amcc-common.h
|
||||||
*/
|
*/
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
||||||
|
@ -54,7 +54,6 @@
|
|||||||
/*
|
/*
|
||||||
* Commands additional to the ones defined in amcc-common.h
|
* Commands additional to the ones defined in amcc-common.h
|
||||||
*/
|
*/
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
||||||
|
@ -88,7 +88,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ /* irqinfo */
|
|
||||||
#define CONFIG_CMD_PCI /* pciinfo */
|
#define CONFIG_CMD_PCI /* pciinfo */
|
||||||
|
|
||||||
#define CONFIG_SYS_LOWBOOT 1
|
#define CONFIG_SYS_LOWBOOT 1
|
||||||
|
@ -381,7 +381,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#define CONFIG_CMD_SDRAM
|
#define CONFIG_CMD_SDRAM
|
||||||
|
|
||||||
|
@ -168,7 +168,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_MFSL
|
#define CONFIG_CMD_MFSL
|
||||||
|
|
||||||
#if defined(FLASH)
|
#if defined(FLASH)
|
||||||
|
@ -54,7 +54,6 @@
|
|||||||
/*
|
/*
|
||||||
* Commands additional to the ones defined in amcc-common.h
|
* Commands additional to the ones defined in amcc-common.h
|
||||||
*/
|
*/
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
* SDRAM configuration (please see cpu/ppc/sdram.[ch])
|
||||||
|
@ -813,7 +813,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -384,7 +384,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -127,7 +127,6 @@ extern unsigned long long get_phys_ccsrbar_addr_early(void);
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
@ -241,7 +241,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
@ -73,7 +73,6 @@
|
|||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_SDRAM
|
#define CONFIG_CMD_SDRAM
|
||||||
|
|
||||||
#define CONFIG_TIMESTAMP /* Print image info with timestamp */
|
#define CONFIG_TIMESTAMP /* Print image info with timestamp */
|
||||||
|
@ -252,7 +252,6 @@ int vct_gpio_get(int pin);
|
|||||||
* (NOR/OneNAND) usage and Linux kernel booting.
|
* (NOR/OneNAND) usage and Linux kernel booting.
|
||||||
*/
|
*/
|
||||||
#if defined(CONFIG_VCT_SMALL_IMAGE)
|
#if defined(CONFIG_VCT_SMALL_IMAGE)
|
||||||
#undef CONFIG_CMD_IRQ
|
|
||||||
#undef CONFIG_CMD_LOADY
|
#undef CONFIG_CMD_LOADY
|
||||||
#undef CONFIG_CMD_REGINFO
|
#undef CONFIG_CMD_REGINFO
|
||||||
#undef CONFIG_CMD_STRINGS
|
#undef CONFIG_CMD_STRINGS
|
||||||
|
@ -70,7 +70,6 @@
|
|||||||
/*-----------------------------------------------------------------------
|
/*-----------------------------------------------------------------------
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
#define CONFIG_SCSI
|
#define CONFIG_SCSI
|
||||||
|
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024)
|
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024)
|
||||||
|
|
||||||
/*Cmd*/
|
/*Cmd*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
#undef CONFIG_CMD_MTDPARTS
|
#undef CONFIG_CMD_MTDPARTS
|
||||||
|
|
||||||
|
@ -175,7 +175,6 @@ extern void out32(unsigned int, unsigned long);
|
|||||||
/*
|
/*
|
||||||
* Command configuration
|
* Command configuration
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_PCI
|
#define CONFIG_CMD_PCI
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -484,7 +484,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
|
|||||||
/*
|
/*
|
||||||
* Command configuration.
|
* Command configuration.
|
||||||
*/
|
*/
|
||||||
#define CONFIG_CMD_IRQ
|
|
||||||
#define CONFIG_CMD_NAND
|
#define CONFIG_CMD_NAND
|
||||||
#define CONFIG_CMD_PCA953X
|
#define CONFIG_CMD_PCA953X
|
||||||
#define CONFIG_CMD_PCA953X_INFO
|
#define CONFIG_CMD_PCA953X_INFO
|
||||||
|
@ -383,7 +383,6 @@ CONFIG_CM922T_XA10
|
|||||||
CONFIG_CMDLINE_EDITING
|
CONFIG_CMDLINE_EDITING
|
||||||
CONFIG_CMDLINE_PS_SUPPORT
|
CONFIG_CMDLINE_PS_SUPPORT
|
||||||
CONFIG_CMDLINE_TAG
|
CONFIG_CMDLINE_TAG
|
||||||
CONFIG_CMD_IRQ
|
|
||||||
CONFIG_CMD_KGDB
|
CONFIG_CMD_KGDB
|
||||||
CONFIG_CMD_LOADY
|
CONFIG_CMD_LOADY
|
||||||
CONFIG_CMD_LZMADEC
|
CONFIG_CMD_LZMADEC
|
||||||
|
Loading…
Reference in New Issue
Block a user