[syslinux] release cycle 6.04

Geert Stappers stappers at stappers.nl
Sun Jan 25 12:33:31 PST 2015


X-Original-In-Reply-To: <CAD0Rxe=5uLCWQ+jfj1J6zepDzqx0vAiBREiwiKOih59MKgBDHg op mail.gmail.com>
X-Previous: http://www.syslinux.org/archives/2015-January/023070.html

On Mon, Jan 05, 2015 at 08:59:57PM -0500, Gene Cumm wrote:
> On Sat, Jan 3, 2015 at 1:21 PM, Geert Stappers wrote:
> > On Thu, Jan 01, 2015 at 09:48:16AM -0500, Gene Cumm wrote:
> 
> >> I'm planning on doing the master
> >> branch (including the one behind the currently broken git daemon at
> >> git.zytor.com) in the next few days and review the patches for chain
> >> and lua.
> >
> > Please do
> 
> Let's begin the new year with a new release cycle, 6.04.  My personal
> repository and the main repo at git.zytor.com along with my github
> repo have been updated.  kernel.org's repo has not been updated and
> there's no prerelease at this time.


$ git log 81ad566f155fac31089fde...HEAD

commit aee0dc5565711ef5be7c30fb5fc1c5f3f98db09f
Author: Ady <ady-sf op hotmail.com>
Date:   Mon Dec 29 21:56:08 2014 -0500

    txt/syslinux.txt: --once
    
    remove mention of the deprecated "-o" option
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit e0bbcd5f91ccb9b8981c000f4ecb9c16947ff03d
Author: Ady <ady-sf op hotmail.com>
Date:   Sun Dec 28 14:37:46 2014 -0500

    txt/syslinux.txt: updates
    
    Correct typos.
    Improve format for asciidoc-to-manpage conversion.
    Wrap text.
    Correct info.
    Help phase-out deprecated and/or conflicting options.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 8ca85bbbcd82ec14c388946ecda4e8d061d7bf39
Author: Robert Yang <liezhi.yang op windriver.com>
Date:   Tue Dec 23 12:45:25 2014 -0500

    check-gnu-efi.sh: print the output of build-gnu-efi.sh
    
    The build would be failed and exit if build-gnu-efi.sh is failed, so
    we'd better not suppress the output of build-gnu-efi.sh, which is good
    for debugging.
    
    Signed-off-by: Robert Yang <liezhi.yang op windriver.com>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 138f262d7f93a0794cb542d54a266ed3a322e50d
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Tue Dec 23 12:07:40 2014 -0500

    efi: prevent git command in non-git tree #2
    
    efi/clean-gnu-efi.sh presumes it's in a git repo.  Test first.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 0f8cbe0409b88f62f08530c5ad3d91d240a96637
Author: Erwan Velu <erwanaliasr1 op gmail.com>
Date:   Tue Dec 23 12:04:46 2014 -0500

    efi: prevent git command in non-git tree
    
    efi/build-gnu-efi.sh presumes it's in a git repo.  Test first.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 6b45747ba5a1d8051d1e6962f0666835c5992128
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Thu Dec 18 21:47:32 2014 -0500

    txt/syslinux.cfg.txt: Fix SYSAPPEND FSUUID
    
    Reflow for proper AsciiDoc formatting.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 5270b9e01c7f5220c989eff7de3dac7c2ac69dd8
Author: Martin Str|mberg <ams op ludd.ltu.se>
Date:   Thu Dec 18 21:34:00 2014 -0500

    com32: Use z size specifier for printf-ing size_t variable
    
    Use the z size specifier to printf-ing size_t variables to get rid of gcc
    warning format "%08x" expects type "unsigned int", but argument 2 has
    type "long unsigned int"
    
    Author: Martin Str|mberg <ams op ludd.ltu.se>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 3106dcd19061b4443c5beba4f0e09412e8d37fbe
Author: Dany St-Amant <dany.ephemeral.2014 op icloud.com>
Date:   Fri Nov 28 13:48:32 2014 -0500

    SYSAPPEND: Fix space stripping
    
    The description of SYSAPPEND for the DMI information states that the spaces
    are replaced by underscores, but this replacement does not occur in 6.03.
    
    Signed-off-by: Dany St-Amant <dany.ephemeral.2014 op icloud.com>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit be645d7a9848847388a662f6c0f7571d52ed7a05
Author: Philippe Coval <philippe.coval op open.eurogiciel.org>
Date:   Wed Dec 17 16:46:29 2014 -0500

    build: sort sources to build in a more deterministic way
    
    It has been observed that binaries contents
    are depending on the order of linked objects.
    
    This order is caused by GNU make's wildcard function
    and the position of sources on filesystem.
    
    This change tries to prevent this kind of randomness.
    
    Also consider building using -j1 flag
    to make it even more reproductible.
    
    Change-Id: Ie8eee7f336e6f1fa2863c4150d967afd15519f1d
    Bug: http://bugzilla.syslinux.org/show_bug.cgi?id=57#related
    Signed-off-by: Philippe Coval <philippe.coval at open.eurogiciel.org>

commit 5932f124bce94b662b0b7dc9b79cdc4802d4731c
Author: Martin Str|mberg <ams op ludd.ltu.se>
Date:   Wed Dec 17 15:28:14 2014 -0500

    com32: change '%llx' to use PRIx64
    
    Get rid of printf format warning format "%llx" expects type
    "long long unsigned int", but argument 2 has type "uint64_t"
    
    Use <inttypes.h> PRIx64 instead of llx to get rid of gcc warning
    format "%llx" expects type "long long unsigned int", but argument 2
    has type "uint64_t"
    
    Author: Martin Str|mberg <ams op ludd.ltu.se>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 4e9a04186557d679a39de1ca18cadc1fbb174250
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Wed Dec 17 15:23:26 2014 -0500

    com32: parallel deps
    
    Resort and collapse the list; add libutil to dep lib
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit e5ff94337477ed6fba4cb94ecc2c304f2c2488a8
Author: Chong Lu <Chong.Lu at windriver.com>
Date:   Wed Dec 17 14:06:18 2014 -0500

    gpllib: fix parallel building issue
    
    From: Chong Lu <Chong.Lu at windriver.com>
    
    There might be an error when parallel build:
    
    [snip]
    cp: cannot create directory `tmp/sysroots/x86_64-linux/usr/share/
    syslinux/com32/include/gplinclude': No such file or directory
    make[4]: *** [install] Error 1
    make[3]: *** [gpllib] Error 2
    [snip]
    
    This is a potential issue. In ${S}/com32/gpllib/Makefile file,
    install target wants to copy $(SRC)/../gplinclude to
    $(INSTALLROOT)$(COM32DIR)/include/ directory, but in ${S}/com32/lib/Makefile
    file, the install target will remove $(INSTALLROOT)$(COM32DIR)/include
    directory. We need to do com32/lib first.
    
    The patch make com32/gpllib depends on com32/lib to fix this issue.
    
    Upstream-Status: Pending
    
    Signed-off-by: Chong Lu <Chong.Lu at windriver.com>
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 80e91530c1a9b73d7768c3a5234684d532661b87
Author: Robert Yang <liezhi.yang at windriver.com>
Date:   Wed Dec 17 14:04:32 2014 -0500

    libupload: fix parallel build issue
    
    Fixed:
    cp -r syslinux-6.01/com32/libupload/*.h image/usr/share/syslinux/com32/include/
    [snip]
    rm -rf image/usr/share/syslinux/com32/include
    [snip]
    cp: cannot create regular file `image/usr/share/syslinux/com32/include/serial.h': No such file or directory
    
    The cp is happened in the "libupload" dir, while "rm -fr" is happend in
    "lib" dir, let "libupload" depend "lib" will fix the problem.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 080c6bc28b6dbfacb6dccaa8e387df5dca273bfc
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Fri Nov 28 13:25:31 2014 -0500

    doc/syslinux.txt, txt/syslinux.cfg.txt: Adjust bit values
    
    Accidentally misdocumented.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 22a873b6233e9f69b6b8feea03f07298c3a74e2e
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Fri Nov 28 12:51:18 2014 -0500

    doc/syslinux.txt: SYSAPPEND 0x20000 FSUUID
    
    Document the change introduced in 386b59e1 and extended in 7c5efd0
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 88427076c14ca833ae3c67bef514ba8e81d9144c
Author: MartinS <ams op luminous.ludd.ltu.se>
Date:   Thu Nov 27 07:49:11 2014 -0500

    btrfs: Suffix 64b macro
    
    gcc complains about the size of the constant of BTRFS_MAGIC_N. It is a
    64bit value, so it needs the ULL suffix.
    
    Signed-off-by: MartinS <ams op luminous.ludd.ltu.se>
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>

commit 4c6e09ef8598244d57635a051ad6d2f13552828c
Author: Gene Cumm <gene.cumm op gmail.com>
Date:   Mon Jan 5 20:40:29 2015 -0500

    version: bump to 6.04/2015
    
    Begin 6.04 in 2015.
    
    Signed-off-by: Gene Cumm <gene.cumm op gmail.com>


Which patches did I miss?



Groeten
Geert Stappers
-- 
Leven en laten leven
------------- volgend deel ------------
Een niet-tekst bijlage is gescrubt...
Naam: signature.asc
Type: application/pgp-signature
Grootte: 836 bytes
Omschrijving: Digital signature
URL : <http://www.zytor.com/pipermail/syslinux/attachments/20150125/5d127292/attachment.sig>


More information about the Syslinux mailing list