10 Apr, 2015

1 commit


03 Apr, 2015

1 commit


31 Mar, 2015

1 commit


29 Mar, 2015

1 commit

  • The current head revision of mkenvimage
    (e72be8947e129f5ab274c0a9f235d2cc0014b2ea) will prevent you from creating
    an env image from a text file that is larger than the env length specified
    by the '-s' option. That doesn't make sense given that the tool now allows
    comments and blank lines. This patch removes that limitation and allows
    longer text files to be used.

    I don't have time / desire at the moment to figure out "patman" and could
    really care less if this is adopted up stream. Just figured I would share
    in case anybody else finds it useful enough to take time to do a proper
    patch.

    >From 39ff30190c2bf687861f4b4b33230f1944fb64f9 Mon Sep 17 00:00:00 2001
    From: Brian McFarland
    Date: Thu, 12 Mar 2015 11:37:19 -0400
    Subject: [PATCH] In mkenvimage, removed the check that prevented using a
    source text file larger than the output environment image. Instead, the main
    parsing loop checks to see if the environment buffer is full, and quits if it
    is. After the main parse loop, a second loop swallows comments and
    whitespace until either the EOF is reached or more env vars are found, in
    which case an error will be thrown.

    Brian McFarland
     

06 Mar, 2015

4 commits


17 Feb, 2015

4 commits

  • For example on a raspberry pi the u-boot environment can be
    saved in a file on the first VFAT partition.
    This example illustrates how to use it with fw_printenv/fw_setenv.

    Signed-off-by: Waldemar Brodkorb

    Waldemar Brodkorb
     
  • Tom Rini
     
  • Now my PS3 can be also used to build u-boot for sunxi devices.

    Signed-off-by: Siarhei Siamashka
    Acked-by: Hans de Goede
    Signed-off-by: Hans de Goede

    Siarhei Siamashka
     
  • Commit a93648d197df48fa46dd55f925ff70468bd81c71 introduced linker generated
    lists for imagetool which is the base for some host tools (mkimage, dumpimage,
    et al.). Unfortunately some host tool chains do not support the used type of
    linker scripts. Therefore this commit broke these host-tools for them, namely
    FreeBSD and Darwin (OS/X).

    This commit tries to fix this. In order to have a clean distinction between host
    and embedded code space we need to introduce our own linker generated list
    instead of re-using the available linker_lists.h provided functionality. So we
    copy the implementation used in linux kernel script/mod/file2alias.c which has
    the very same problem (cause it is a host tool). This code also comes with an
    abstraction for Mach-O binary format used in Darwin systems.

    Signed-off-by: Andreas Bießmann
    Cc: Guilherme Maciel Ferreira

    Andreas Bießmann
     

16 Feb, 2015

3 commits


10 Feb, 2015

3 commits


07 Feb, 2015

2 commits


06 Feb, 2015

1 commit


01 Feb, 2015

1 commit


31 Jan, 2015

3 commits

  • Add an explanation for how to set up git so that patman can find the alias
    file. Fix up the get_maintainers message too.

    Reported-by: Scott Wood
    Signed-off-by: Simon Glass

    Simon Glass
     
  • True commit lines start at column zero. Anything that is indented
    is part of the commit message instead. I noticed this by trying to
    run buildman with commit e3a4facdfc07179ebe017a07b8de6224a935a9f3
    as master, which contained a reference to a Linux commit inside
    the commit message. ProcessLine saw that as a genuite commit
    line, and thus buildman tried to build it, and died with an
    exception because that SHA is not present in the U-Boot tree.

    Signed-off-by: Scott Wood
    Acked-by: Simon Glass

    Scott Wood
     
  • When run with the --dry-run argument patman prints out information
    showing what it would do. This information currently doesn't line up
    with what patman/git send-email really do. Some basic examples:
    - If an email address is addressed via "Series-cc" and "Patch-cc" patman
    shows that email address would be CC-ed two times.
    - If an email address is addressed via "Series-to" and "Patch-cc" patman
    shows that email address would be sent TO and CC-ed.
    - If an email address is addressed from a combination of tag aliases,
    get_maintainer.pl output, "Series-cc", "Patch-cc", etc patman shows
    that the email address would be CC-ed multiple times.

    Patman currently does try to send duplicate emails like the --dry-run
    output shows, but "git send-email" intelligently removes duplicate
    addresses so this patch shouldn't change the non-dry-run functionality.

    Change patman's output and email addressing to line up with the
    "git send-email" logic. This trims down patman's dry-run output and
    prevents confusion about what patman will do when emails are actually
    sent.

    Signed-off-by: Peter Tyser
    Acked-by: Simon Glass
    Tested-by: Simon Glass

    Peter Tyser
     

30 Jan, 2015

11 commits


19 Jan, 2015

1 commit


15 Jan, 2015

3 commits