Displaying 17 results from an estimated 17 matches for "linit".
Did you mean:
init
2013 Oct 03
0
Automatic boot menu?
...hdir", change_dir},
+ {"currentdir", get_dir},
+ {"dir", dir_iter_factory},
+ {NULL, NULL},
+};
+
+LUALIB_API int luaopen_lfs (lua_State *L) {
+ dir_create_meta (L);
+ luaL_openlib (L, LFS_LIBNAME, fslib, 0);
+ return 1;
+}
diff --git a/com32/lua/src/linit.c b/com32/lua/src/linit.c
index 6e97873..e50589e 100644
--- a/com32/lua/src/linit.c
+++ b/com32/lua/src/linit.c
@@ -35,6 +35,7 @@ static const luaL_Reg lualibs[] = {
{LUA_VESALIBNAME, luaopen_vesa},
{LUA_DHCPLIBNAME, luaopen_dhcp},
#endif
+ {LUA_LFSLIBNAME, luaopen_lfs},
{NULL, NULL}
};...
2013 Aug 30
2
Automatic boot menu?
"H. Peter Anvin" <hpa at zytor.com> writes:
> On 08/29/2013 04:14 AM, Ferenc Wagner wrote:
>
>> "H. Peter Anvin" <hpa at zytor.com> writes:
>>
>>> On 08/22/2013 10:20 AM, Ferenc Wagner wrote:
>>>
>>>> Now that Syslinux has ls.c32 and lua.c32, it should be possible to build
>>>> a customizable boot menu in
2011 Oct 04
1
Added DHCPINFO Tables to the lua.c32 Implementation - syslinux-4.04
...hardware addr */
+ uint8_t sname[64]; /* Optl. boot server hostname */
+ uint8_t file[128]; /* boot file name (ascii path) */
+ uint8_t cookie[4]; /* Magic cookie */
+ uint8_t options[1020]; /* Options */
+} dhcp_t;
+
diff -up syslinux-4.04/com32/lua/src/linit.c.orig
syslinux-4.04/com32/lua/src/linit.c
--- syslinux-4.04/com32/lua/src/linit.c.orig 2011-04-18
14:24:17.000000000 -0700
+++ syslinux-4.04/com32/lua/src/linit.c 2011-09-28 13:10:14.000000000
-0700
@@ -33,6 +33,7 @@ static const luaL_Reg lualibs[] = {
{LUA_PCILIBNAME, luaopen_pci},
{L...
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...p.c | 43 +-
com32/lua/src/lfs.c | 294 ++
com32/lua/src/lfunc.c | 81 +-
com32/lua/src/lfunc.h | 7 +-
com32/lua/src/lgc.c | 1410 ++++--
com32/lua/src/lgc.h | 159 +-
com32/lua/src/linit.c | 57 +-
com32/lua/src/liolib.c | 548 ++-
com32/lua/src/llex.c | 366 +-
com32/lua/src/llex.h | 27 +-
com32/lua/src/llimits.h | 221 +-
com32/lua/src/lmathlib.c | 98 +-
com32/lua/src/lmem...
2008 Dec 10
0
[PATCH 2/2] COM32: lua - add dmi library
...mi functions (com32/modules/dmi*) to lua:
dmi.supported(): returns true if DMI is supported
dmi.gettable(): returns array of key, value pairs containing system info
Sorry, but this patch does not apply cleanly if [PATCH 1/2] was applied
before. There's just one line to fix in com32/lua/src/linit.c however:
" {LUA_DMILIBNAME, luaopen_dmi},"
Usage example:
if (dmi.supported()) then
dmitable = dmi.gettable()
for k,v in pairs(dmitable) do
print(k, v)
end
print(dmitable["system.manufacturer"])
print(dmitable["system.product_name"])
print(dmi...
2006 Feb 14
1
SATA RAID Controller Support?
Greetings,
I just got new Dell PowerEdge SC1420 and a 6 channel SATA RAID
controller card (Adaptec 2610SA from Dell also)
When I attempt to install CentOS 4.2, it doesnt find the RAID 1 mirror I
set up. (2 X 160Gig drives) It doesnt find any hard drives at all.
Does anyone have anything to suggest here?
Thanks
Ryan
2001 Aug 18
2
ext3->ext2->ext3 and unclean umount
Suppose I have the latest and greatest e2fsprogs.
>From reading the docs I understand that
1) boot ext3, clean umount
- you can remount ext3 or ext2
2) boot ext3, unclean umount
- you can remount ext3
- you can e2fsck and remount ext2
Does this mean that normal linux init script e2fsck will do it, in case fstab
says ext2? Or you should make sure to run e2fsck by hand with -f?
3) boot
2006 Sep 14
1
Centos 4.4: Support for Dell PowerEdge 830 CERC 6-Channel SATA RAID Controller
Does Centos/RHEL 4.4 supports the CERC 6-Channel SATA RAID Controller
that comes with the Dell PowerEdge 830 Tower Server?
--
------------------------------------------------------------
Erick Perez
Panama Sistemas
Integradores de Telefonia IP y Soluciones Para Centros de Datos
Panama, Republica de Panama
Cel Panama. +(507) 6694-4780
------------------------------------------------------------
2013 Oct 15
0
Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...> com32/lua/src/lfs.c | 294 ++
> com32/lua/src/lfunc.c | 81 +-
> com32/lua/src/lfunc.h | 7 +-
> com32/lua/src/lgc.c | 1410 ++++--
> com32/lua/src/lgc.h | 159 +-
> com32/lua/src/linit.c | 57 +-
> com32/lua/src/liolib.c | 548 ++-
> com32/lua/src/llex.c | 366 +-
> com32/lua/src/llex.h | 27 +-
> com32/lua/src/llimits.h | 221 +-
> com32/lua/src/lmathlib.c |...
2014 Mar 02
3
pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding
...| 43 +-
com32/lua/src/lfs.c | 296 +++
com32/lua/src/lfunc.c | 81 +-
com32/lua/src/lfunc.h | 7 +-
com32/lua/src/lgc.c | 1417 +++++++----
com32/lua/src/lgc.h | 159 +-
com32/lua/src/linit.c | 57 +-
com32/lua/src/liolib.c | 549 ++--
com32/lua/src/llex.c | 369 +--
com32/lua/src/llex.h | 27 +-
com32/lua/src/llimits.h | 221 +-
com32/lua/src/lmathlib.c | 98 +-
com32/lua/src/lm...
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...0 0.02 74663 0 0.02 74663
libclamav_yc.ll 2 29945 0 0.01 29927 0 0.01 29927
life.ll 19 56067 0 0.01 56038 0 0.02 56038
light.ll 17 23094 0 0.01 23065 0 0.01 23065
LimitedStreams.ll 28 76886 8 0.02 70249 8 0.01 68584
line.ll 1 1899 0 0.01 1870 0 0.01 1870
linemod.ll 1 50101 0 0.01 50072 0 0.01 50072
linit.ll 1 5624 0 0.01 5609 0 0.01 5609
linpack-pc.ll 13 145271 0 0.02 145253 0 0.02 145253
liolib.ll 41 84096 0 0.02 84081 0 0.01 84081
ListFileUtils.ll 8 79532 0 0.01 79505 0 0.01 79505
list.ll 2 7747 0 0.01 7725 0 0.01 7725
List.ll 20 323082 0 0.03 323046 0 0.03 320565
lists1.ll 88 152101 9 0.02 15070...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
...rivers/scsi/BusLogic.c | 2 +-
drivers/scsi/FlashPoint.c | 9 +-
drivers/scsi/NCR5380.c | 2 +-
drivers/scsi/aacraid/aachba.c | 9 +-
drivers/scsi/aacraid/commsup.c | 2 +-
drivers/scsi/aacraid/linit.c | 2 +-
drivers/scsi/aic7xxx/aic79xx_core.c | 40 +++---
drivers/scsi/aic7xxx/aic79xx_osm.c | 2 +-
drivers/scsi/aic7xxx/aic7xxx_core.c | 28 ++---
drivers/scsi/aic94xx/aic94xx_scb.c | 11 +-
drivers/scsi/aic94xx/aic94xx_tmf.c...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
...rivers/scsi/BusLogic.c | 2 +-
drivers/scsi/FlashPoint.c | 9 +-
drivers/scsi/NCR5380.c | 2 +-
drivers/scsi/aacraid/aachba.c | 9 +-
drivers/scsi/aacraid/commsup.c | 2 +-
drivers/scsi/aacraid/linit.c | 2 +-
drivers/scsi/aic7xxx/aic79xx_core.c | 40 +++---
drivers/scsi/aic7xxx/aic79xx_osm.c | 2 +-
drivers/scsi/aic7xxx/aic7xxx_core.c | 28 ++---
drivers/scsi/aic94xx/aic94xx_scb.c | 11 +-
drivers/scsi/aic94xx/aic94xx_tmf.c...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
...rivers/scsi/BusLogic.c | 2 +-
drivers/scsi/FlashPoint.c | 9 +-
drivers/scsi/NCR5380.c | 2 +-
drivers/scsi/aacraid/aachba.c | 9 +-
drivers/scsi/aacraid/commsup.c | 2 +-
drivers/scsi/aacraid/linit.c | 2 +-
drivers/scsi/aic7xxx/aic79xx_core.c | 40 +++---
drivers/scsi/aic7xxx/aic79xx_osm.c | 2 +-
drivers/scsi/aic7xxx/aic7xxx_core.c | 28 ++---
drivers/scsi/aic94xx/aic94xx_scb.c | 11 +-
drivers/scsi/aic94xx/aic94xx_tmf.c...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
...rivers/scsi/BusLogic.c | 2 +-
drivers/scsi/FlashPoint.c | 9 +-
drivers/scsi/NCR5380.c | 2 +-
drivers/scsi/aacraid/aachba.c | 9 +-
drivers/scsi/aacraid/commsup.c | 2 +-
drivers/scsi/aacraid/linit.c | 2 +-
drivers/scsi/aic7xxx/aic79xx_core.c | 40 +++---
drivers/scsi/aic7xxx/aic79xx_osm.c | 2 +-
drivers/scsi/aic7xxx/aic7xxx_core.c | 28 ++---
drivers/scsi/aic94xx/aic94xx_scb.c | 11 +-
drivers/scsi/aic94xx/aic94xx_tmf.c...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
...rivers/scsi/BusLogic.c | 2 +-
drivers/scsi/FlashPoint.c | 9 +-
drivers/scsi/NCR5380.c | 2 +-
drivers/scsi/aacraid/aachba.c | 9 +-
drivers/scsi/aacraid/commsup.c | 2 +-
drivers/scsi/aacraid/linit.c | 2 +-
drivers/scsi/aic7xxx/aic79xx_core.c | 40 +++---
drivers/scsi/aic7xxx/aic79xx_osm.c | 2 +-
drivers/scsi/aic7xxx/aic7xxx_core.c | 28 ++---
drivers/scsi/aic94xx/aic94xx_scb.c | 11 +-
drivers/scsi/aic94xx/aic94xx_tmf.c...