Displaying 3 results from an estimated 3 matches for "tsrs".
Did you mean:
msrs
2007 May 25
1
multiple comboot files?
Is there a way for isolinux/syslinux to execute a list of comboot files
immediately at startup, and only once?
I have a bunch of small comboot .com files that I want to batch run immediately,
then after that do a
DISPLAY boot.msg
similar in some ways to an autoexec.bat.
For example:
DEFAULT mycd
APPEND ramdisk_size=100000 init=/etc/init lang=us ....
TIMEOUT 300
ONSTARTUP mybatch <- ???
2012 Dec 31
1
Post-Syslinux Memory Manager
...installs it
- Allocates memory from Syslinux' memory arenas
- Marks that memory in the memory map using the INT 0x15 hook
MEMDISK could check for the presence of this INT 0x15 hook and use it if
it's available.
Other programs could use this INT 0x15 hook to install their own hooks or
TSRs or whatever.
Does this seem like a worth-while project, with the relevant support code
introduced into Syslinux?
- Shao Miller
2009 Jul 17
19
I need help saving table data from a rake task
I need to find out how I can create and save a large dataset to a table
based on multiple returned arrays from a Rake task.
Here is my example using just two arrays (there are 14 in this
particular rake task):
update_tsos_offense = TsosOffense.new
to_team_id, to_ppcs = update_tsos_offense.calculate_tsos(TotalOffense,
"ydspgm", "desc")
ro_team_id, ro_ppcs =