Home
last modified time | relevance | path

Searched refs:iomux_doenv (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/doc/
H A DREADME.iomux17 (iomux_doenv()) of the environment setting implementation.
19 iomux_doenv() is called in common/cmd_nvedit.c to handle setenv and in
34 iomux_doenv() prevents multiple use of the same device, e.g. "setenv
35 stdin nc,nc,serial" will discard the second nc. iomux_doenv() is
/openbmc/u-boot/include/
H A Diomux.h27 int iomux_doenv(const int, const char *);
/openbmc/u-boot/common/
H A Dconsole.c46 if (iomux_doenv(console, value)) in on_console()
256 iomux_doenv(file, dev->name); in console_doenv()
814 iomux_err = iomux_doenv(stdin, stdinname); in console_init_r()
815 iomux_err += iomux_doenv(stdout, stdoutname); in console_init_r()
816 iomux_err += iomux_doenv(stderr, stderrname); in console_init_r()
H A Dusb_kbd.c522 error = iomux_doenv(stdin, stdinname);
587 if (iomux_doenv(stdin, env_get("stdin")) != 0)
632 if (iomux_doenv(stdin, env_get("stdin"))) {
H A Diomux.c26 int iomux_doenv(const int console, const char *arg) in iomux_doenv() function