search for: temp_nam

Displaying 5 results from an estimated 5 matches for "temp_nam".

Did you mean: temp_name
2007 Mar 05
2
Any capistrano email recipes?
I''d like to set up capistrano to send an email whenever we do a deployment. Just start an SMTP session with localhost and shoot off the email. I have all the code to do that actually, I just don''t know how to run some Ruby code on the deployment server. Anyone know how to do that, or do you have an email recipe? Pat --~--~---------~--~----~------------~-------~--~----~ You
2011 Apr 01
1
[GIT PULL] elflink core
...ng_dep(struct loading_dep *dep) +{ + if (dep) { + print_loading_dep(dep->next); + printf("\t\t\"%s\"\n", dep->name); + } +} + int module_load_dependencies(const char *name,const char *dep_file) { FILE *d_file=fopen(dep_file,"r"); char line[2048],aux[2048],temp_name[MODULE_NAME_SIZE],slbz[24]; int i=0,j=0,res=0; + struct loading_dep *dep; if(d_file==NULL) { @@ -355,6 +389,40 @@ int module_load_dependencies(const char *name,const char *dep_file) return -1; } + /* + * Are we already in the middle of loading this module's + * dependencies? +...
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
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and