On 8/17/19 5:38 PM, Michael D. Setzer II via users wrote:
I use syslinux in the g4l project I've maintained since 2004, and noticed that Fedora 30 includes the later 6.04 version versus the latest full released 6.03 version. Did a test, and noted that all the files except display.c32 are included with the fedora 30? Note sure if it was left out for a reason, or by accident?
https://src.fedoraproject.org/rpms/syslinux/commits/master
It looks like 6.04 has been in use since mid-2016. Even if I go back as far as Fedora 24, I don't see display.c32 in the syslinux-nonlinux package, where I'd expect it. What was the last release that had the file you expect?
./syslinux/efi32/com32/cmenu/display.c32 ./syslinux/bios/com32/cmenu/display.c32 ./syslinux/efi64/com32/cmenu/display.c32
Is where it is in the latest git clone, and believe it has always been in the syslinux from the kernel.org and the latest git versions.
The display.c is com32/cmenu directory. The code shows copyright back to 2004-2006 and is in the very latest git clone?
/* -*- c -*- ------------------------------------------------------------- * * * Copyright 2004-2006 Murali Krishnan Ganapathy - All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, Inc., 53 Temple Place Ste 330, * Boston MA 02111-1307, USA; either version 2 of the License, or * (at your option) any later version; incorporated herein by reference. * * ----------------------------------------------------------------------- */
#ifndef NULL #define NULL ((void *) 0) #endif
#include "help.h" #include "com32io.h" #include "cmenu.h" #include "tui.h" #include <stdlib.h> #include <com32.h> #include <stdio.h>
int main(int argc, char *argv[]) { if (argc < 2) { csprint("Usage: display.c32 <textfile>\n", 0x07); exit(1); }
init_help(NULL); // No base dir, so all filenames must be absolute runhelp(argv[1]); close_help(); return 0; }
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org