Rename getenv_r() into getenv_f()While running from flash, i. e. before relocation, we have only alimited C runtime environment without writable data segment. In thisphase, some configurations (f
Rename getenv_r() into getenv_f()While running from flash, i. e. before relocation, we have only alimited C runtime environment without writable data segment. In thisphase, some configurations (for example with environment in EEPROM)must not use the normal getenv(), but a special function. Thisfunction had been called getenv_r(), with the idea that the "_r"suffix would mean the same as in the _r_eentrant versions of some ofthe C library functions (for example getdate vs. getdate_r, getgrentvs. getgrent_r, etc.).Unfortunately this was a misleading name, as in U-Boot the "_r"generally means "running from RAM", i. e. _after_ relocation.To avoid confusion, rename into getenv_f() [as "running from flash"]Signed-off-by: Wolfgang Denk <wd@denx.de>Acked-by: Detlev Zundel <dzu@denx.de>
show more ...
at91: Enable slow master clock on meesc boardNormally the processor clock has a divisor of 2.In some cases this this needs to be set to 4.Check the user has set environment mdiv to 4 to change th
at91: Enable slow master clock on meesc boardNormally the processor clock has a divisor of 2.In some cases this this needs to be set to 4.Check the user has set environment mdiv to 4 to change the divisor.Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
at91: Update MEESC board supportThis patch implements several updates:-disable CONFIG_ENV_OVERWRITE-add new hardware style variants and set the arch numbers appropriate-pass the serial# and hard
at91: Update MEESC board supportThis patch implements several updates:-disable CONFIG_ENV_OVERWRITE-add new hardware style variants and set the arch numbers appropriate-pass the serial# and hardware revision to the kernel-removed unused macros from include/configs/meesc.h-fixed multiline comment styleSigned-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
at91: Add esd gmbh MEESC board supportThis patch adds support for esd gmbh MEESC board.The MEESC is based on an Atmel AT91SAM9263 SoC.Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
12