search for: mod_bio

Displaying 3 results from an estimated 3 matches for "mod_bio".

Did you mean: mod_bios
2015 Sep 20
1
[syslinux:master] com32/modules: Split build by architecture. Add dir.c32
...pdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ > - ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \ > - whichsys.c32 prdhcp.c32 pxechn.c32 kontron_wdt.c32 ifmemdsk.c32 \ > - hexdump.c32 poweroff.c32 cptime.c32 debug.c32 > +# BIOS-specific modules > +MOD_BIOS = disk.c32 elf.c32 ethersel.c32 gpxecmd.c32 ifmemdsk.c32 ifplop.c32 \ > + kbdmap.c32 kontron_wdt.c32 pcitest.c32 pmload.c32 poweroff.c32 \ > + prdhcp.c32 pxechn.c32 sanboot.c32 sdi.c32 vesainfo.c32 > + > +# All-architecture modules > +MOD_ALL = cat.c32 cmd.c32 con...
2020 Jan 22
0
[PATCH] com32/modules: introduce play module
...d, 96 insertions(+), 1 deletion(-) create mode 100644 com32/modules/play.c diff --git a/com32/modules/Makefile b/com32/modules/Makefile index c01d6338..5e69a0d7 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -20,7 +20,7 @@ include $(MAKEDIR)/elf.mk # BIOS-specific modules MOD_BIOS = disk.c32 elf.c32 ethersel.c32 gpxecmd.c32 ifmemdsk.c32 ifplop.c32 \ - kbdmap.c32 kontron_wdt.c32 pcitest.c32 pmload.c32 poweroff.c32 \ + kbdmap.c32 kontron_wdt.c32 pcitest.c32 play.c32 pmload.c32 poweroff.c32 \ prdhcp.c32 pxechn.c32 sanboot.c32 sdi.c32 vesainfo.c32 # All-architectu...
2017 Jul 01
0
[PATCH] Add new hash.c32 module
...2 pwd.c32 reboot.c32 \ - vpdtest.c32 whichsys.c32 zzjson.c32 + debug.c32 dir.c32 dmitest.c32 hash.c32 hexdump.c32 host.c32 \ + ifcpu.c32 ifcpu64.c32 linux.c32 ls.c32 meminfo.c32 pwd.c32 \ + reboot.c32 vpdtest.c32 whichsys.c32 zzjson.c32 ifeq ($(FIRMWARE),BIOS) MODULES = $(MOD_ALL) $(MOD_BIOS) diff U3 syslinux-6.04-pre1/com32/modules/hash.c b/com32/modules/hash.c --- /dev/null Fri Mar 04 02:09:01 2016 +++ b/com32/modules/hash.c Fri Jun 30 20:09:01 2017 @@ -0,0 +1,236 @@ +/* + * Based on md5sum.c32 included in Slitaz 4.0. + * Based on c32box.c32 (md5sum.c) included in Slitaz 5.0 Rolli...