Home
last modified time | relevance | path

Searched refs:env_buf (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/arch/mips/lib/
H A Dbootm.c171 char env_buf[12]; in linux_env_legacy() local
176 sprintf(env_buf, "%lu", (ulong)gd->ram_size); in linux_env_legacy()
190 linux_env_set("memsize", env_buf); in linux_env_legacy()
192 sprintf(env_buf, "0x%08lX", rd_start); in linux_env_legacy()
193 linux_env_set("initrd_start", env_buf); in linux_env_legacy()
195 sprintf(env_buf, "0x%lX", rd_size); in linux_env_legacy()
196 linux_env_set("initrd_size", env_buf); in linux_env_legacy()
199 linux_env_set("flash_start", env_buf); in linux_env_legacy()
202 linux_env_set("flash_size", env_buf); in linux_env_legacy()
213 sprintf(env_buf, "%un8r", gd->baudrate); in linux_env_legacy()
[all …]
/openbmc/u-boot/include/asm-generic/
H A Dglobal_data.h85 char env_buf[32]; /* buffer for env_get() before reloc. */ member
/openbmc/u-boot/cmd/
H A Dnvedit.c682 if (env_get_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0) in env_get()
683 return (char *)(gd->env_buf); in env_get()