similar to: How to glue com32 module in grub2 ?

Displaying 20 results from an estimated 5000 matches similar to: "How to glue com32 module in grub2 ?"

2009 Aug 13
3
how to call hdt without syslinux
Dear developers, Thanks a lot for designing HDT. It is really a great tool to have. I have come here to know more about the usability of HDT. HDT is called by syslinux. What to do if I like to call it by grub2 ? and what to do if I like to run within my debian box ? Thanks
2013 Sep 24
1
[PATCH 1/1] com32: hdt: fix memory leak
The dynamically alloc'd string to protect from strtok modification has not been free'd on start_auto_mode() function Signed-off-by: Felipe Pena <felipensp at gmail.com> --- com32/hdt/hdt-cli.c | 1 + 1 file changed, 1 insertion(+) diff --git a/com32/hdt/hdt-cli.c b/com32/hdt/hdt-cli.c index 7542da8..6c5baf1 100644 --- a/com32/hdt/hdt-cli.c +++ b/com32/hdt/hdt-cli.c @@ -779,6
2008 Mar 27
1
samba automatically delete folders ??????????
Dear list, I am facing really a mysterious problem with samba. I am using clarkconnect server where samba-3.0.25b-1.1.cc is installed. I have created some samba users and windows XP user can share their samba files and folders without any problem. But the problem which happened here third time is auto deletion of files and folders !!!!!!!!!!!!!!!!!!!!!!!!!! An user ( FROM XP) simply deleted 2
2009 Nov 27
3
HDT 0.3.6-pre2 is out !
The -pre2 version of HDT 0.3.6 is out. Gert was a great source of motivation for making that -pre2. He found many bugs and gave nice ideas. Thanks Gert for your time and your _many_ tests. This release will be more or less what will be included in the incoming syslinux 3.84. Since -pre1, here come the Changelog * Reporting CPU L1 & L2 cache * Report "Hw.Virt" in cpu
2009 Nov 27
3
HDT 0.3.6-pre2 is out !
The -pre2 version of HDT 0.3.6 is out. Gert was a great source of motivation for making that -pre2. He found many bugs and gave nice ideas. Thanks Gert for your time and your _many_ tests. This release will be more or less what will be included in the incoming syslinux 3.84. Since -pre1, here come the Changelog * Reporting CPU L1 & L2 cache * Report "Hw.Virt" in cpu
2014 Feb 13
4
Linux and HDT looking systems?
I've got a user of my g4l project that is having a system that locks with my kernels, but also with hdt? The default versions are using the 5.10 version of syslinux, but build a special setup using 6.02 and it still locks with both the kernels and the hdt? He was able to get gparted i486 live iso to boot on the machine, so not clear what the issue might be. The system is a Fujitsu T734
2009 Oct 27
1
HDT 0.3.5-pre1
As result of a long work of Pierre, we are now on the track of releasing HDT-0.3.5. This -pre1 release includes new features that needs to be tested widely to insure that we didn't introduced new bugs. As a menu, we have: - bootloader detection In the disk menu, the "show disks" command reports the detected bootloader. - Cmenu now uses the libansi This improves the rendering and
2009 Mar 11
2
Introducing a new com32 module : HDT
Since a while, I've been contributing some code to syslinux to improve the hardware detection. Most of that code have been revamped from other project like dmidecode or the linux kernel itself. The com32 api is really a nice play for developing new features. All of that work is only available in libraries or sample code. During his fosdem presentation
2010 Jun 18
2
[PATCH] hdt & gcc -Werror
From: Gene Cumm <gene.cumm at gmail.com> Fix several calls to more_printf() as eventually printf() is called without a literal string which generate warnings with gcc and lead to errors when -Werror is active. Signed-off-by: Gene Cumm <gene.cumm at gmail.com> The message "format not a string literal and no format arguments" at first seems strange but by doing this change
2014 Jun 06
2
EFI booting over network - can't then load anything
Hi all.. Quick one if someone could show me a line out of their configuration for these two scenario's . We're trying to do two things via EFI64 network boot & SYSLINUX: * boot a CentOS 6.5 installation vmlinuz/initrd.img combination - machines just reboot after downloading the initrd.img. * boot windows server 2012 r2 PE menu via bootmgfw.efi - unsure of the commands to
2009 Oct 04
1
Build a bootable floppy image which contains HDT
It is now possible to build a bootable floppy image which contains HDT, with my patch applied to Erwans HDT branch: http://git.zytor.com/?p=users/erwan/hdt.git;a=commit;h=16b37fe2266c920087f88cdec94243b71218d871 Unpack the Syslinux archive and build whole Syslinux first, then cd to ./com32/hdt/ and make hdt.img $ make $ cd ./com32/hdt/ $ make hdt.img Now you have a 2.88 MB floppy image which
2009 Oct 03
3
PATCH: Build floppy image which contains HDT
This patch builds a floppy image with contains HDT, so users of GRUB or GRUB4DOS can use HDT too, without installing Syslinux. When you compile Syslinux, this floppy image isn't build automatically. To build it, runthe following from the extracted Syslinux source: $ cd ./com32/hdt $ make hdt.img As suggested by Pierre-Alexandre Meyer, all extra files required for building the floppy
2014 Oct 10
1
dumping using tftp
Hi Yeah I ended up figuring it out My usage for the tool will be to gather hardware specs of new servers that we receive and servers we have in storage I will then see if I can script something to phrase the dumps to update our inventory tool. Our main issue is that gathering information manually by opening the server and having to locate each parts is time consuming and being humans we are
2014 Oct 09
2
dumping using tftp
Hello, I'm not quite sure I understand how do you use HDT for dumping over tftp server. The wiki on dumping does not offer much details on how to set this up. >From my understanding is you need to run pxelinux somewhere but being that HDT is a bootable cd ISO, I don't see how I can get HDT up from a TFTP server without the need to install something on that TFTP server. Is there a more
2014 Nov 22
1
Get rid of printf format warning format ‘%llx’ expects type ‘long long unsigned int’, but argument 2 has type ‘uint64_t’
Hello. 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? -- MartinS diff --git a/com32/gpllib/acpi/xsdt.c b/com32/gpllib/acpi/xsdt.c index 208abc6..228b6c3 100644 --- a/com32/gpllib/acpi/xsdt.c +++ b/com32/gpllib/acpi/xsdt.c @@ -63,7 +63,7 @@ int parse_xsdt(s_acpi * acpi) /*
2011 Apr 29
1
[PATCH] hdt: libmenu.a no longer exists
From: Matt Fleming <matt.fleming at linux.intel.com> Don't link against libmenu.a, it no longer exists as it was removed in commit 74518b8b691c ("elflink: Make ELF the default object format"). This fixes the following build error, make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Signed-off-by: Matt Fleming
2009 Apr 15
2
The maximum number of rows in a com32 menu
Hey Murali, While playing with HDT which uses your menu, I found I can't reach more than 24 rows whereas my screen is 25. set_windows_size() relies on getnumrows() to define the maximum number of possible rows. But regarding to getnumrows() code, it sounds to report "// Actually numrows - 1". On my screen which is 80x25, getnumcols x getrowcols reports 80x24. The
2009 May 02
4
HDT 0.3.2 is out
HDT 0.3.2 is out and mainly add a better disk management My previous work on disks was a little bit limited and incomplete. Since pierre did a massive rework that allow hdt to feature disks & partitions detection. On the menu side, the "Disk" menu is now extended to show disks' partitions. On the cli side, we now have more commands : hdt> show disk This command will show a
2009 May 02
4
HDT 0.3.2 is out
HDT 0.3.2 is out and mainly add a better disk management My previous work on disks was a little bit limited and incomplete. Since pierre did a massive rework that allow hdt to feature disks & partitions detection. On the menu side, the "Disk" menu is now extended to show disks' partitions. On the cli side, we now have more commands : hdt> show disk This command will show a
2009 May 05
7
HDT 0.3.3 is out
HDT 0.3.3 has just been released. This release aims at solving some CLI bugs and adds a some new memory mapping detection. I'd like to thanks Dag Wieers for reporting many CLI bugs & pierre for his work on the memory mapping. Here come the changelog: - A new memory mode Memory items can be reached via the new "memory>" mode. - Memory mapping display Pierre did integrate