Skip to content
Snippets Groups Projects
  1. Apr 12, 2022
  2. Apr 10, 2022
    • Tom Rini's avatar
      Merge tag 'efi-2022-07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi · 33ae8c5b
      Tom Rini authored
      Pull request for efi-2022-07-rc1
      
      Documentation:
      
      * Describe how enable DM_SERIAL for a board
      
      UEFI
      
      * Preparatory patches for better integration of DM and UEFI
      * Use sysreset after capsule updates instead of do_reset
      * Allow to disable persisting non-volatile variables
      33ae8c5b
    • Marek Vasut's avatar
      Revert "env: Load env when ENV_IS_NOWHERE is only location selected" · 5c7399ec
      Marek Vasut authored and Tom Rini's avatar Tom Rini committed
      
      This reverts commit 8d61237e.
      
      This commit broke environment on literally every board I have access
      to, with this revert in place, environment works as it should again.
      The problem I observe with this patch is that saved environment in
      either SPI NOR or eMMC is never used, the system always falls back
      to default environment. The 'saveenv' command does succeed, but then
      after reset, the default env is again used.
      
      Furthermore, the commit introduced duplicate code in env_init(), this:
      "
      	if (!prio) {
      		gd->env_addr = (ulong)&default_environment[0];
      		gd->env_valid = ENV_INVALID;
      
      		return 0;
      	}
      
      	if (ret == -ENOENT) {
      		gd->env_addr = (ulong)&default_environment[0];
      		gd->env_valid = ENV_INVALID;
      
      		return 0;
      	}
      "
      
      Furthermore, the commit is missing DCO SoB line.
      
      Also note that upstream does not support UltraZed EG board, so
      this might have been a patch pulled from downstream which did
      depend on some other downstream behavior.
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Felix.Vietmeyer@jila.colorado.edu <felix.vietmeyer@jila.colorado.edu>
      Cc: Tom Rini <trini@konsulko.com>
      5c7399ec
    • Tom Rini's avatar
      Merge branch '2022-04-08-gpio-updates' · 22b7d140
      Tom Rini authored
      - Add PCA957X GPIO support, enable GPIO hogging in SPL, add
        gpio_request_by_line_name() for later use and add some pytests for
        'gpio'
      22b7d140
  3. Apr 09, 2022
Loading