similar to: Possible to persist data across reboots from Lua?

Displaying 20 results from an estimated 100 matches similar to: "Possible to persist data across reboots from Lua?"

2017 Jan 27
0
Possible to persist data across reboots from Lua?
Frank Hunleth via Syslinux <syslinux at zytor.com> writes: > I'd like to be able to save a boolean value across reboots. I believe > that being able to store to the auxiliary data vector would satisfy > this need, but I'm using syslinux and that doesn't seem to be > implemented. It's implemented in the Syslinux API, just not exported to Lua. > While I'm
2010 Oct 02
4
[PATCH 0/4] some fixes on elflink branch
This is a small set of patches for elflink branch based on feng's elflink branch. hpa, It seems that I can't log on terminus by ssh at home. So I can't push these patches on my git tree. Liu Aleaxander (4): elflink: Cleanup some warnings elflink: Fix the wrong malloc size in enter_cmdline elflink: Do clear screen even if we have no pDraw_Menu method elflink: Add Ctrl-p +
2006 Oct 07
3
boot once option
Can someone address the boot once option. Is it to hard for syslinux to write a flag file to file system or the blank space after the mbr? .conf bootonce Lable /boot/flagfile or .conf bootonce Lable1 /boot/flagfileLable1 bootonce Lable2 /boot/flagFileLable2 bootonce Lable2 /boot/flagFileLable2 skip the default option if the flag file is 0 size. Write something to the
2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
Hi, These patches fix some compiler warnings in ldlinux and elflink. I've tried to split the patches out so that they only change one file or one type of problem at once. So, if they do inadvertently introduce any bugs it should at least be easy to bisect to a smallish commit. The following changes since commit 9ded45991b4fc83b40af963feb773ddca2589d74: ldlinux: Parse and store the
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2015 Oct 13
5
[PATCH 0/2] Stack overflows when running commands
From: Sylvain Gault <sylvain.gault at gmail.com> Hello there, I propose 2 patches that fix two possible stack overflows either when running a COM32 module or when loading a new config file. I didn't find a better way to do this than to use the infamous setjmp/longjmp functions to restore the stack to a previous state. This makes the logic a bit more complex, but the behavior is not
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi, These patches contain support for some features that are already in Syslinux 4 but weren't working properly on the elflink branch. It's another step closer to feature parity with Syslinux 4. Having to jump through the comboot API for localboot support is less than ideal and I'll eventually fix that, probably when we move a big chunk of code from asm to C. Also, there's a
2007 Nov 30
1
Persist perms on devices after reboots
Hi Dumb question i think but how can i make devices permissions persist after a reboot. I dont think i have come across this issue before but i have some SAN disks that need to be oracle:dba as their perms but after a reboot they reset back to brw------- 1 root root 120, 49 Nov 30 10:40 /dev/emcpowerd1 any thoughts? thanks
2006 Mar 27
1
Is there a way to persist a Hash in ActiveRecord?
I can''t seem to figure out a way to persist a hash attribute in ActiveRecord. Let''s say I have a Game, which has a many-to-many with players. Each player has an index, but the array can have empty spaces in it (since a game might not be filled up yet). I''d like to model this using a hash, with position --> player mapping. (What I don''t want to do is
2005 Dec 20
1
How do I persist a value in a collection_select
Hi: I am using a collection_select to select which client''s records I want. Everything works properly EXCEPT the list box reverts to its initial value rather than holding onto the client whose records I am now viewing. ?
2012 Apr 12
0
PF - pf not loading non-persist tables from main ruleset on 8.3-PRERELEASE
Hello list, I installed a box recently and updated it to 8.3-PRERELEASE on 2012/04/11 I'm experiencing this extremely weird behavior where PF refuses to load standard and const table definitions from the main ruleset. - persist tables load just fine - normal and const tables inside anchors load just fine Does anyone else have the same problem ? I'll try to update the kernel again,
2007 Jan 22
0
[Bug 1250] sshd client connections persist across IP change
http://bugzilla.mindrot.org/show_bug.cgi?id=1250 djm at mindrot.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Comment #2 from djm at mindrot.org 2007-01-22 16:53 -------
2009 Jun 18
2
How to persist file upload fields after a validation error.
Hi all, Is there an easy way to not lose the file field input from the user after a validation error? It pisses people off to have to choose their files again just because some other field didn''t pass a validation. I''ve googled this and just haven''t come up with much of anything. Thanks.
2008 Sep 18
2
[LLVMdev] Web Server Problems Persist
Dear All, Our web server problems are persisting. I may need to restart the web server while diagnosing the problem. I'll send email once I'm done. -- John T.
2008 Sep 18
0
[LLVMdev] Web Server Problems Persist
John Criswell wrote: > Dear All, > > Our web server problems are persisting. I may need to restart the web > server while diagnosing the problem. I'll send email once I'm done. > Okay. I think it's working now. The web server was getting a lot of traffic that was maxing out the maximum number of Apache processes, but the traffic seems to have ceased, and a
2008 Sep 23
1
[LLVMdev] Web Server Problems Persist
Hi John, > If you run into problems, please email llvmdev. I'll periodically check > llvm.org to make sure it's still up. I'm seeing long delays on llvm.org again. Pages are served eventually, but it takes minutes for each requests. Are there any dynamic scripts on the server that can eat a lot of resources? I think the nightly tester result pages would qualify? Perhaps
2011 Oct 13
1
[PATCH] Fix control persist and stdio forward interaction
As reported earlier at https://lists.mindrot.org/pipermail/openssh-unix-dev/2011-March/029441.html there is some strange interaction between ControlPersist and ssh -W that breaks things if you're using both. Specifically, ssh -W host:port with ControlPersist enabled opens up two connections to host:port and sends data from both back. I think this is happening because
2013 Sep 22
1
ad-hoc ssh agent + control persist
Hi all, I'm using ssh to deploy software remotely. I download stuff on the remote box from git repositories over ssh using ssh deployment keys. For this to work, I start locally an ad-hoc ssh agent loaded with only the deployment keys, and forward it to the remote host. I can use something like ssh-agent my_sub_deployment_script so that ad-hoc ssh agent only exists when needed. This alone
2006 Oct 12
1
[Bug 1250] sshd client connections persist across IP change
http://bugzilla.mindrot.org/show_bug.cgi?id=1250 Summary: sshd client connections persist across IP change Product: Portable OpenSSH Version: 4.3p2 Platform: ix86 OS/Version: Linux Status: NEW Severity: trivial Priority: P4 Component: sshd AssignedTo: bitbucket at mindrot.org ReportedBy:
2012 Feb 08
1
Is there a way to not persist changes made by applications?
I want to install and run a program and then have it deleted as if it were never there, including registry changes, temp files, etc. Is there a way I could get Wine to do this for me?