search for: rosh

Displaying 20 results from an estimated 92 matches for "rosh".

Did you mean: josh
2009 Mar 07
3
rosh patch V2
Here is a second version of my patch from last night. It uses the provided ctype function isspace and does the same readdir(). I remove the rosh_issp() function. I admit to being a bit liberal with my use of braces and spaces. We all of the habit of knowing we can invent a more perfect wheel. Let me know if you have any questions. Keith -------------- next part -------------- A non-text attachment was scrubbed... Name: rosh.c.patch Type:...
2009 Mar 06
4
rosh patch
Hey Guys, Below is a patch for the com32/rosh/rosh.c from tonights syslinx git. The patch does the following: 1) changes the rosh_issp to use an if instead of a case for this simple test. 2) changes the rosh_dir_arg function to move the readdir() to inside the while test. This will let me go through my APUE book. Let me know if you have...
2009 Feb 15
2
COM32 module: Read-Only shell
Well, here's the read-only shell (rosh) that I've been working on. It's functional but still quite rough. My primary intention of posting it at this time is such that people have an easy way to demonstrate to themselves that the library calls I made work. This should apply as a patch to the head of the "dir" branch a...
2009 Mar 05
0
[PATCH 5/5] COM32/rosh: Improvements
From: Gene Cumm <gene.cumm at gmail.com> COM32/rosh: Improvements; ls acts more like ls with -l -i and -F being understood; Lots of code clean up and user assistance. Clean up the MCONFIG file; Clean up the code to get it to pass checkpatch.pl (aside from confusion on multi-line strings); Add a little more in the error function to recognize differe...
2010 Jun 18
1
ROSH: Status
Just a status update on my progress with ROSH: I now have it able to compile as a COM32 and Linux ELF on the pathbased branch. The main reason I am using the Linux ELF is to test and compile a little easier and faster. At this point, it's approaching a stable, usable state. However, it depends on some changes to libutil, the main COM32...
2009 Mar 23
1
ROSH: bug or feature
Used rosh.c32 from syslinux-3.74-pre11. When I typed 'pzd' in the shell: > pzd /boot/syslinux > pwd /boot/syslinux I use an azerty keyboard. Due to that I typed 'pzd'. Is it a feature or a bug? Gert Hulsemans
2010 Jun 28
0
ROSH attachments
Here's the two files. -- -Gene -------------- next part -------------- A non-text attachment was scrubbed... Name: rosh.c Type: text/x-c Size: 27913 bytes Desc: not available URL: <http://www.zytor.com/pipermail/syslinux/attachments/20100627/df26979e/attachment.bin> -------------- next part -------------- A non-text attachment was scrubbed... Name: rosh.h Type: text/x-chdr Size: 6027 bytes Desc: not available...
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
...3 ++- com32/lib/Makefile | 5 +++-- com32/libutil/Makefile | 3 ++- com32/lua/src/Makefile | 3 ++- com32/mboot/Makefile | 3 ++- com32/menu/Makefile | 3 ++- com32/modules/Makefile | 3 ++- com32/rosh/Makefile | 3 ++- com32/samples/Makefile | 3 ++- com32/sysdump/Makefile | 3 ++- com32/tools/Makefile | 4 ++-- core/Makefile | 3 ++- diag/geodsp/Makefile | 2 +- diag/mbr/Makefile...
2011 Apr 16
6
[PATCH 0/6] Makefile cleanups
...om32/lib/Makefile | 5 +++-- com32/libutil/Makefile | 3 ++- com32/lua/src/Makefile | 6 +++--- com32/mboot/Makefile | 6 +++--- com32/menu/Makefile | 8 ++++---- com32/modules/Makefile | 3 ++- com32/rosh/Makefile | 3 ++- com32/samples/Makefile | 3 ++- com32/sysdump/Makefile | 6 +++--- com32/tools/Makefile | 4 ++-- core/Makefile | 3 ++- diag/geodsp/Makefile | 2 +- diag/mbr/Makefile...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
Without further adieu, I would like to announce that I've finally pushed ROSH, the Read-Only SHell, finally to the point of being reasonably usable. From: Gene Cumm <gene.cumm at gmail.com> Patch ROSH for Syslinux-4 and make it much more usable. Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- diff --git a/com32/rosh/rosh.c b/com32/rosh/rosh.c index 511...
2015 Feb 10
1
Missing make dependencies?
I'm seeing some sporadic build failures with 'make -j4'. The failures are: make[4]: *** No rule to make target 'hello.c32', needed by 'all'. Stop. I've only seen the failures with com32/samples/hello.c32 and com32/rosh/rosh.c32. I'm not a make expert, but I think it's due to missing dependencies. This patch seems to fix my failures, but I'm wondering (if my analysis is correct) if there are a few more missing. diff --git a/com32/Makefile b/com32/Makefile index c5784be..b18414f 100644 --- a/com32/Ma...
2015 Jul 11
0
EXTLINUX - GCC 5
...-------------------------------------------------------------- [com32/modules/prdhcp.c:145]: (error) Uninitialized variable: p Possibly a false positive. It depends on what pxe_get_cached_info() does to &p. ----------------------------------------------------------------- Checking com32/rosh/rosh.c: COMMAND_LINE_SIZE... [com32/rosh/rosh.c:1128]: (error) Uninitialized variable: cmdstr Checking com32/rosh/rosh.c: FILENAME_MAX... [com32/rosh/rosh.c:559]: (error) Uninitialized variable: filestr2 ... [com32/rosh/rosh.c:600]: (error) Uninitialized variable: filestr2 Possibly non-...
2010 Jul 08
0
ROSH: Updated
I finally have a nice branch that should merge cleanly against the master head without unnecessary cruft. git://gnx.ath.cx/syslinux.git The branch, 'rosh_for_hpa', contains the updates. At the moment, I've fixed more's pagination and overflow on large screens. It also shows some version information about the operating environment and build environment. I've also made some updates to the wiki page about rosh. Thanks go out to HPA...
2014 Jan 18
4
Makefiles: includes and rule prerequisites
...e prerequisites, is it better to list the directory as a prerequisite (simple and current approach) or would it be better to have a more complex set of rules like the following: --In com32/Makefile: lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib libutil/libutil.c32: libutil --In com32/rosh/Makefile: rosh.c32: lib/libcom32.c32 libutil/libutil.c32 -- -Gene
2010 Mar 27
1
Syslinux-4/libutil: console_ansi_std()
Well, I decided to get ROSH back out and try to get it functioning in Syslinux-4. As has been my habit, I first recompiled the Linux binary and tried it out. In the beginning of ROSH, it calls console_ansi_std(). When I was working on this in the past, using this function ensured both the Linux and the Syslinux/COM32 binar...
2015 Jul 11
3
EXTLINUX - GCC 5
...ere to modify or relax the search criteria by just one character. Among those files (just a sample of them), there are: com32/elflink/ldlinux/cli.c com32/cmenu/libmenu/tui.c gnu-efi/gnu-efi-3.0/lib/console.c memdisk/inflate.c and: com32/elflink/ldlinux/readconfig.c com32/lib/sys/argv.c com32/rosh/rosh.c core/dmi.c core/fs/pxe/urlparse.c There are, of course, more. Not all of them might be relevant to this gcc5 compatibility issue, but they might be candidates for review / improvements (or, in other words, potential source of troubles related to the matter in question). If the Syslinux...
2014 Mar 02
1
stat() (was: pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding)
On Sun, Mar 2, 2014 at 3:53 AM, Ferenc Wagner <wferi at niif.hu> wrote: >> And an official stat() implementation would be very useful. After >> inventing mine, I noticed rosh also invented its own... #include <sys/stat.h> int stat(const char *path, struct stat *buf); I invented my own in rosh after not having one in the libraries based on what I thought was the most reasonable use of existing functions. -- -Gene
2011 Dec 29
2
pxelinux 4.10 pre17 http:// on VMware works now
Hi, I finally managed to test pxelinux 4.10 pre17 in our VMware environment and can report that HTTP booting seems to work reliably now. Downloads are fairly fast. As a side note, rosh "ls" and "pwd" commands now work as expected with a HTTP TFTP prefix, cool! I'll leave it in production use now and report about any further issues. Can you already tell when a 4.10 release will be out? What do you need in order to release 4.10? Kind Regards, Schlomo
2018 Aug 02
1
[PATCH 1/2] Add fabs() implementation
When we add -ffreestanding the compiler won't get to inline this any more. Signed-off-by: David Woodhouse <dwmw2 at infradead.org> --- com32/lib/math/fabs.S | 15 +++++++++++++++ mk/lib.mk | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 com32/lib/math/fabs.S diff --git a/com32/lib/math/fabs.S b/com32/lib/math/fabs.S new file mode 100644 index
2014 Jan 19
1
Makefiles: includes and rule prerequisites
...equisite (simple and current approach) or would it be better to >> have a more complex set of rules like the following: >> >> --In com32/Makefile: >> lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib >> libutil/libutil.c32: libutil >> >> --In com32/rosh/Makefile: >> rosh.c32: lib/libcom32.c32 libutil/libutil.c32 >> > > You *have* to use a PHONY target, e.g. the directory name. Otherwise > you may end up with a dependency getting skipped simply due to the file > you test for existing since a previous build, it will then get...