mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-14 22:46:27 -04:00
include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
This commit is contained in:
parent
37d4bb7058
commit
2fd90ce575
@ -71,7 +71,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 115200
|
#define CONFIG_BAUDRATE 115200
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -75,7 +75,14 @@
|
|||||||
#define CONFIG_CMD_DHCP
|
#define CONFIG_CMD_DHCP
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BOOTDELAY 3
|
#define CONFIG_BOOTDELAY 3
|
||||||
#define CONFIG_BOOTARGS "console=ttySA0,115200n8 root=/dev/nfs ip=bootp"
|
#define CONFIG_BOOTARGS "console=ttySA0,115200n8 root=/dev/nfs ip=bootp"
|
||||||
|
@ -122,7 +122,15 @@
|
|||||||
#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
|
#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
|
||||||
#undef CFG_LOADS_BAUD_CHANGE /* don't allow baudrate change */
|
#undef CFG_LOADS_BAUD_CHANGE /* don't allow baudrate change */
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
|
||||||
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -108,8 +108,12 @@
|
|||||||
#define CONFIG_OVERWRITE_ETHADDR_ONCE 1
|
#define CONFIG_OVERWRITE_ETHADDR_ONCE 1
|
||||||
#define CONFIG_NET_MULTI 1
|
#define CONFIG_NET_MULTI 1
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_SUBNETMASK \
|
/*
|
||||||
| CONFIG_BOOTP_GATEWAY)
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
|
@ -70,13 +70,17 @@
|
|||||||
|
|
||||||
#define CONFIG_BOOTARGS "mem=32M"
|
#define CONFIG_BOOTARGS "mem=32M"
|
||||||
|
|
||||||
/* Add support for a few extra bootp options like:
|
|
||||||
* - File size
|
/*
|
||||||
* - DNS
|
* BOOTP options
|
||||||
*/
|
*/
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | \
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
CONFIG_BOOTP_BOOTFILESIZE | \
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
CONFIG_BOOTP_DNS)
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
#define CONFIG_BOOTP_DNS
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
|
@ -68,7 +68,15 @@
|
|||||||
|
|
||||||
#undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */
|
#undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_MAC_PARTITION
|
#define CONFIG_MAC_PARTITION
|
||||||
#define CONFIG_DOS_PARTITION
|
#define CONFIG_DOS_PARTITION
|
||||||
|
@ -73,12 +73,14 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BOOTP/DHCP protocol configuration
|
* BOOTP options
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
#define CONFIG_BOOTP_MASK ( CONFIG_BOOTP_DEFAULT | \
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
CONFIG_BOOTP_DNS2 | \
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
CONFIG_BOOTP_BOOTFILESIZE )
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
#define CONFIG_BOOTP_DNS2
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -73,12 +73,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BOOTP/DHCP protocol configuration
|
* BOOTP options
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
#define CONFIG_BOOTP_MASK ( CONFIG_BOOTP_DEFAULT | \
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
CONFIG_BOOTP_DNS2 | \
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
CONFIG_BOOTP_BOOTFILESIZE )
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
#define CONFIG_BOOTP_DNS2
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
|
@ -62,7 +62,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 9600
|
#define CONFIG_BAUDRATE 9600
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -72,7 +72,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 19200
|
#define CONFIG_BAUDRATE 19200
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -88,7 +88,14 @@
|
|||||||
#define CONFIG_CMD_DHCP
|
#define CONFIG_CMD_DHCP
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BOOTDELAY 3
|
#define CONFIG_BOOTDELAY 3
|
||||||
#define CONFIG_BOOTARGS "console=ttySA0,38400n8 mtdparts=sa1100-flash:1m@0(zImage),3m@1m(ramdisk.gz),12m@4m(userfs) root=/dev/nfs ip=bootp"
|
#define CONFIG_BOOTARGS "console=ttySA0,38400n8 mtdparts=sa1100-flash:1m@0(zImage),3m@1m(ramdisk.gz),12m@4m(userfs) root=/dev/nfs ip=bootp"
|
||||||
|
@ -285,13 +285,16 @@
|
|||||||
#undef CONFIG_AUTOBOOT_DELAY_STR
|
#undef CONFIG_AUTOBOOT_DELAY_STR
|
||||||
#define DEBUG_BOOTKEYS 0
|
#define DEBUG_BOOTKEYS 0
|
||||||
|
|
||||||
/* Add support for a few extra bootp options like:
|
/*
|
||||||
* - File size
|
* BOOTP options
|
||||||
* - DNS
|
|
||||||
*/
|
*/
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | \
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
CONFIG_BOOTP_BOOTFILESIZE | \
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
CONFIG_BOOTP_DNS)
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
#definef CONFIG_BOOTP_DNS
|
||||||
|
|
||||||
/* undef this to save memory */
|
/* undef this to save memory */
|
||||||
#define CFG_LONGHELP
|
#define CFG_LONGHELP
|
||||||
|
@ -71,7 +71,14 @@
|
|||||||
#include <config_cmd_default.h>
|
#include <config_cmd_default.h>
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Miscellaneous configurable options
|
* Miscellaneous configurable options
|
||||||
|
@ -61,7 +61,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 9600
|
#define CONFIG_BAUDRATE 9600
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -67,7 +67,6 @@
|
|||||||
#define CFG_SERIAL1 0x17000000
|
#define CFG_SERIAL1 0x17000000
|
||||||
|
|
||||||
/*#define CONFIG_NET_MULTI */
|
/*#define CONFIG_NET_MULTI */
|
||||||
/*#define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT */
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -84,8 +84,6 @@
|
|||||||
#define CONFIG_CMD_PING
|
#define CONFIG_CMD_PING
|
||||||
|
|
||||||
|
|
||||||
/* #define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT */
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#define CONFIG_BOOTDELAY 2
|
#define CONFIG_BOOTDELAY 2
|
||||||
#define CONFIG_BOOTARGS "root=/dev/nfs nfsroot=<IP address>:/<exported rootfs> mem=128M ip=dhcp netdev=27,0,0xfc800000,0xfc800010,eth0 video=clcdfb:0"
|
#define CONFIG_BOOTARGS "root=/dev/nfs nfsroot=<IP address>:/<exported rootfs> mem=128M ip=dhcp netdev=27,0,0xfc800000,0xfc800010,eth0 video=clcdfb:0"
|
||||||
|
@ -60,7 +60,15 @@
|
|||||||
|
|
||||||
#undef CONFIG_WATCHDOG
|
#undef CONFIG_WATCHDOG
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_MAC_PARTITION
|
#define CONFIG_MAC_PARTITION
|
||||||
#define CONFIG_DOS_PARTITION
|
#define CONFIG_DOS_PARTITION
|
||||||
|
@ -66,7 +66,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 115200
|
#define CONFIG_BAUDRATE 115200
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -196,7 +196,14 @@
|
|||||||
#define CONFIG_MAC_PARTITION
|
#define CONFIG_MAC_PARTITION
|
||||||
#define CONFIG_DOS_PARTITION
|
#define CONFIG_DOS_PARTITION
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -63,7 +63,14 @@
|
|||||||
|
|
||||||
#define CONFIG_BAUDRATE 38400
|
#define CONFIG_BAUDRATE 38400
|
||||||
|
|
||||||
#define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE)
|
/*
|
||||||
|
* BOOTP options
|
||||||
|
*/
|
||||||
|
#define CONFIG_BOOTP_SUBNETMASK
|
||||||
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
#define CONFIG_BOOTP_BOOTPATH
|
||||||
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user