Skip to content
Snippets Groups Projects
  1. Mar 27, 2016
  2. Feb 26, 2016
    • Alexandre Messier's avatar
      net: bootp: Add environment variable for timeout period · 50768f5b
      Alexandre Messier authored
      
      There is currently one config option (CONFIG_NET_RETRY_COUNT) that
      is available to tune the retries of the network stack.
      Unfortunately, it is global to all protocols, and the value is
      interpreted differently in all of them.
      
      Add a new environment variable that directly sets the retry period for
      BOOTP timeouts. If this new value is not set, the period is still derived
      from the default number of retries, or from CONFIG_NET_RETRY_COUNT if
      defined. When both the new variable is set and CONFIG_NET_RETRY_COUNT
      is defined, the variable has precedence.
      
      Signed-off-by: default avatarAlexandre Messier <amessier@tycoint.com>
      50768f5b
  3. Feb 06, 2016
  4. Jan 28, 2016
  5. Jan 08, 2016
    • Andre Przywara's avatar
      net: remove scary warning about EEPROM provided MAC address · 821fec0c
      Andre Przywara authored
      
      In many parts of the computing world having a unique MAC address
      sitting in some on-NIC storage is considered the normal case.
      Remove the warning to not scare the user unnecessarily.
      This applies to Highbank/Midway and ARM's Juno, for instance.
      Besides that this fixes the formatting on Midway, for instance,
      which currently looks like:
      ...
      Net:   xgmac0
      Warning: xgmac0 using MAC address from net device
      , xgmac1
      Warning: xgmac1 using MAC address from net device
      ...
      
      Signed-off-by: default avatarAndre Przywara <andre.przywara@arm.com>
      821fec0c
  6. Jan 07, 2016
  7. Dec 18, 2015
  8. Nov 20, 2015
  9. Oct 29, 2015
  10. Oct 28, 2015
  11. Sep 30, 2015
  12. Sep 09, 2015
  13. Sep 07, 2015
  14. Aug 21, 2015
    • Michal Simek's avatar
      net: Return -EINTR when ctrl+c is pressed · 19a4fbaa
      Michal Simek authored
      
      Current behavior is that if CTRL+C is pressed command returns 0 that was
      successful which is not correct behavior.
      The easiest test case is "tftpboot 80000 uImage && echo yes"
      and press CTRL+C. Then the second command is called which is incorrect.
      
      Error log:
      zynq-uboot> tftpb 80000 uImage && echo yes
      Gem.e000b000:7 is connected to Gem.e000b000.  Reconnecting to
      Gem.e000b000
      Gem.e000b000 Waiting for PHY auto negotiation to complete....... done
      Using Gem.e000b000 device
      TFTP from server 192.168.0.102; our IP address is 192.168.0.101
      Filename 'uImage'.
      Load address: 0x80000
      Loading: ################
      Abort
      yes
      zynq-uboot>
      
      This patch adds -EINTR return value when CTRL+C is pressed.
      
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
      19a4fbaa
Loading