<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/com32/lua/src/syslinux.c, branch syslinux-6.03-pre8</title>
<subtitle>git.kernel.org: pub/scm/boot/syslinux/syslinux.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/'/>
<entry>
<title>lua: Remove obsolete crap from sl_boot_linux()</title>
<updated>2014-03-13T20:18:17+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@linux.intel.com</email>
</author>
<published>2014-03-13T20:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=687c5c7bb1f9dcc1db21fe8e950f2dc9588f02e6'/>
<id>687c5c7bb1f9dcc1db21fe8e950f2dc9588f02e6</id>
<content type='text'>
sl_boot_linux() contained a bunch of random obsolete garbage.

Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sl_boot_linux() contained a bunch of random obsolete garbage.

Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: In sl_initramfs_add_file(), actually use the real file name</title>
<updated>2014-03-13T20:18:17+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@linux.intel.com</email>
</author>
<published>2014-03-13T20:01:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=ed74bb29ac9ab4d6c5973eeb59f99a266b99d888'/>
<id>ed74bb29ac9ab4d6c5973eeb59f99a266b99d888</id>
<content type='text'>
Instead of "/testfile1", actually use the real file name...

Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of "/testfile1", actually use the real file name...

Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: bind get_key() in the syslinux module</title>
<updated>2014-03-01T16:40:35+00:00</updated>
<author>
<name>Ferenc Wágner</name>
<email>wferi@niif.hu</email>
</author>
<published>2013-10-07T17:50:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=7b5128075df5444fbc462175f5f05140e240efe9'/>
<id>7b5128075df5444fbc462175f5f05140e240efe9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: reactivate the syslinux extension module</title>
<updated>2014-03-01T16:40:35+00:00</updated>
<author>
<name>Ferenc Wágner</name>
<email>wferi@niif.hu</email>
</author>
<published>2013-10-13T20:30:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=4bbaf68cbf6c9a4c850f71b19bfb9604b9327efb'/>
<id>4bbaf68cbf6c9a4c850f71b19bfb9604b9327efb</id>
<content type='text'>
Under Lua 5.2 modules are not expected to set global variables
to reduce namespace pollution. Explicit require() is preferred.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Under Lua 5.2 modules are not expected to set global variables
to reduce namespace pollution. Explicit require() is preferred.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added the native syslinux functions config_file(), ipappend_strs(), and reboot() to Lua.c32. This allows the Lua script to query the config file name and the ipappend strings (pxelinux only), as well as to perform reboot (warm and cold) to the system.</title>
<updated>2012-09-22T16:23:38+00:00</updated>
<author>
<name>Hung-chi Lihn</name>
<email>hlihn@google.com</email>
</author>
<published>2012-09-22T16:23:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=280a43d406e02b1e8439e90eedb65379847c7df9'/>
<id>280a43d406e02b1e8439e90eedb65379847c7df9</id>
<content type='text'>
In Lua.c32, the extension will be used as the following:
  1. syslinux.config_file() will return the config file string.
  2. syslinux.ipappend_strs() will return a table of IPAPPEND strings with numerical indices.
  3. syslinux.reboot() will perform cold reboot, while syslinux.reboot(1) will perform warm reboot.

Signed-off-by: Hung-chi Lihn &lt;hlihn@google.com&gt;
Signed-off-by: Erwan Velu &lt;erwanaliasr1@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Lua.c32, the extension will be used as the following:
  1. syslinux.config_file() will return the config file string.
  2. syslinux.ipappend_strs() will return a table of IPAPPEND strings with numerical indices.
  3. syslinux.reboot() will perform cold reboot, while syslinux.reboot(1) will perform warm reboot.

Signed-off-by: Hung-chi Lihn &lt;hlihn@google.com&gt;
Signed-off-by: Erwan Velu &lt;erwanaliasr1@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>com32: Add device tree support</title>
<updated>2012-06-29T21:42:11+00:00</updated>
<author>
<name>Thierry Reding</name>
<email>thierry.reding@avionic-design.de</email>
</author>
<published>2012-05-31T15:41:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=1eb311caecf1452a78013640db828fd40c9055d2'/>
<id>1eb311caecf1452a78013640db828fd40c9055d2</id>
<content type='text'>
This commit adds support for passing a Flattened Device Tree (FDT) blob
to the Linux kernel.

Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit adds support for passing a Flattened Device Tree (FDT) blob
to the Linux kernel.

Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>com32/lua/src/syslinux.c: remove variables set but not used</title>
<updated>2011-03-16T20:10:36+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2011-03-16T20:10:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=72ac6e125fa374f12027b3f663c3f8c3a5e886b2'/>
<id>72ac6e125fa374f12027b3f663c3f8c3a5e886b2</id>
<content type='text'>
gcc 4.6 warns on variables set but not used, so remove them.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gcc 4.6 warns on variables set but not used, so remove them.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: Making lua building with no gcc error</title>
<updated>2011-02-06T22:42:54+00:00</updated>
<author>
<name>Erwan Velu</name>
<email>erwanaliasr1@gmail.com</email>
</author>
<published>2011-02-06T22:42:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=a200ad6d3b0da02a196fc49ed3c73014aae1b542'/>
<id>a200ad6d3b0da02a196fc49ed3c73014aae1b542</id>
<content type='text'>
Simple patch to make gcc happy during build in -Wall -Werror
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simple patch to make gcc happy during build in -Wall -Werror
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: Add .syslinux.derivative() and .syslinux.version()</title>
<updated>2010-07-07T00:54:53+00:00</updated>
<author>
<name>Gert Hulselmans</name>
<email>gerth@zytor.com</email>
</author>
<published>2010-07-07T00:54:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=cec521ffd06a8ff8550445ab4b92f235da46c948'/>
<id>cec521ffd06a8ff8550445ab4b92f235da46c948</id>
<content type='text'>
Add .syslinux.derivative() and .syslinux.version().
Add an example script which shows how you can use .syslinux.derivative().

Signed-off-by: Gert Hulselmans &lt;gerth@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add .syslinux.derivative() and .syslinux.version().
Add an example script which shows how you can use .syslinux.derivative().

Signed-off-by: Gert Hulselmans &lt;gerth@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: remove obsolete header used for old sleep function</title>
<updated>2010-07-06T20:41:29+00:00</updated>
<author>
<name>Gert Hulselmans</name>
<email>gerth@zytor.com</email>
</author>
<published>2010-07-06T20:41:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=444426a9e552874ddb6f2f841db5565c3de678cc'/>
<id>444426a9e552874ddb6f2f841db5565c3de678cc</id>
<content type='text'>
Remove obsolete header used for old sleep function.

Signed-off-by: Gert Hulselmans &lt;gerth@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove obsolete header used for old sleep function.

Signed-off-by: Gert Hulselmans &lt;gerth@zytor.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
