diff options
author | stroese <stroese> | 2003-02-14 11:21:23 +0000 |
---|---|---|
committer | stroese <stroese> | 2003-02-14 11:21:23 +0000 |
commit | ad10dd9aaf573fefe1cbd9d446a24f07f8b87428 (patch) | |
tree | ed9676dd2921f05a3faf4ed97c416ac204e29c0d /common | |
parent | e5ad56b13bc0d9e67f58c6021d0663a14cafce31 (diff) |
Add "pcidelay" environment variable (in ms, enabled via CONFIG_PCI_BOOTDELAY).
Diffstat (limited to 'common')
-rw-r--r-- | common/env_common.c | 3 | ||||
-rw-r--r-- | common/environment.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/common/env_common.c b/common/env_common.c index 4f618d633fd..ea085013203 100644 --- a/common/env_common.c +++ b/common/env_common.c @@ -128,6 +128,9 @@ uchar default_environment[] = { #ifdef CONFIG_CLOCKS_IN_MHZ "clocks_in_mhz=1\0" #endif +#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0) + "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0" +#endif #ifdef CONFIG_EXTRA_ENV_SETTINGS CONFIG_EXTRA_ENV_SETTINGS #endif diff --git a/common/environment.c b/common/environment.c index 1df38729031..244c2a26ba5 100644 --- a/common/environment.c +++ b/common/environment.c @@ -164,6 +164,9 @@ env_t environment __PPCENV__ = { #ifdef CONFIG_CLOCKS_IN_MHZ "clocks_in_mhz=" "1" "\0" #endif +#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0) + "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0" +#endif #ifdef CONFIG_EXTRA_ENV_SETTINGS CONFIG_EXTRA_ENV_SETTINGS #endif |