1. 08 2月, 2017 2 次提交
  2. 10 1月, 2017 1 次提交
  3. 16 7月, 2016 1 次提交
    • R
      Various, unrelated tree-wide typo fixes. · 62a3b7dd
      Robert P. J. Day 提交于
          Fix a number of typos, including:
      
           * "compatble" -> "compatible"
           * "eanbeld" -> "enabled"
           * "envrionment" -> "environment"
           * "FTD" -> "FDT" (for "flattened device tree")
           * "ommitted" -> "omitted"
           * "overriden" -> "overridden"
           * "partiton" -> "partition"
           * "propogate" -> "propagate"
           * "resourse" -> "resource"
           * "rest in piece" -> "rest in peace"
           * "suport" -> "support"
           * "varible" -> "variable"
      Signed-off-by: NRobert P. J. Day <rpjday@crashcourse.ca>
      62a3b7dd
  4. 27 5月, 2016 1 次提交
    • A
      efi_loader: Add network access support · 0efe1bcf
      Alexander Graf 提交于
      We can now successfully boot EFI applications from disk, but users
      may want to also run them from a PXE setup.
      
      This patch implements rudimentary network support, allowing a payload
      to send and receive network packets.
      
      With this patch, I was able to successfully run grub2 with network
      access inside of QEMU's -M xlnx-ep108.
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      0efe1bcf
  5. 04 5月, 2016 1 次提交
  6. 04 4月, 2016 1 次提交
  7. 27 3月, 2016 1 次提交
  8. 29 1月, 2016 1 次提交
  9. 22 12月, 2015 1 次提交
  10. 30 10月, 2015 1 次提交
  11. 29 10月, 2015 1 次提交
  12. 30 9月, 2015 1 次提交
  13. 07 9月, 2015 1 次提交
  14. 22 7月, 2015 2 次提交
    • S
      net: Allow drivers to return -ENOSYS with the write_hwaddr() method · b86f795a
      Simon Glass 提交于
      Some drivers may want to implement this method for some of their devices but
      not for others. So it is not possible to just leave the operation out of
      the table. Drivers could get around this by masquerading as two separate
      drivers but that seems unpleasant.
      
      Allow the driver to return an error when it does not want to process the
      write_hwaddr() method.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      b86f795a
    • S
      dm: eth: Avoid blocking on packet reception · a1ca92ea
      Simon Glass 提交于
      Some devices can take a long time to work out whether they have a new packet
      or now. For example the ASIX USB Ethernet dongle can take 5 seconds to do
      this, since it waits until it gets a new packet on the wire before allowing
      the USB bulk read packet to be submitted.
      
      At present with driver mode the Ethernet receive code reads 32 packets. This
      can take a very long time if we must wait for all 32 packets. The old code
      (before driver model) worked by reading a single set of packets from the USB
      device, then processing all the packets with in. It would be nice to use
      the same behaviour with driver model.
      
      Add a flag to the receive method which indicates that the driver should try
      to find a packet if available, by consulting the hardware. When the flag is
      not set, it should just return any packet data it has already received. If
      there is none, it should return -EAGAIN so that the loop will terminate.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      a1ca92ea
  15. 19 4月, 2015 24 次提交