Skip to content
Snippets Groups Projects
  1. May 07, 2018
    • Tom Rini's avatar
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini authored
      
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      83d290c5
  2. Mar 14, 2018
  3. Aug 16, 2017
  4. Jan 28, 2017
  5. Mar 14, 2016
  6. Jan 25, 2016
  7. Dec 14, 2015
  8. Jun 19, 2015
  9. May 10, 2015
  10. Mar 25, 2015
  11. Jan 29, 2015
  12. Jul 18, 2014
  13. May 23, 2014
  14. Jul 24, 2013
  15. Mar 11, 2013
    • Stephen Warren's avatar
      cmd_part: don't print cmd name twice in help · 92668d68
      Stephen Warren authored
      
      The core implementation of "help" already prints the command name before
      the help text of a specific command. Remove it from part's own help text
      to avoid it being printed twice:
      
      Tegra114 (Dalmore) # help part
      part - disk partition related commands
      
      Usage:
      part part uuid <interface> <dev>:<part>
          - print partition UUID
      ...
      
      Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
      92668d68
  16. Sep 25, 2012
    • Stephen Warren's avatar
      cmd_part: add partition-related command · 5cf41dcc
      Stephen Warren authored
      
      This implements the following:
      
      part uuid mmc 0:1
        -> print partition UUID
      part uuid mmc 0:1 uuid
        -> set environment variable to partition UUID
      part list mmc 0
        -> list the partitions on the specified device
      
      "part uuid" can be useful when writing a bootcmd which searches all
      known devices for something bootable, and then wants the kernel to
      use the same partition as the root device, e.g.:
      
      part uuid ${devtype} ${devnum}:${rootpart} uuid
      setenv bootargs root=PARTUUID=${uuid} ...
      
      Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
      5cf41dcc
Loading