How to do quickly in order to starting fiasco with a console shell?
How to do quickly in order to starting fiasco with a console shell? After copying src/l4/conf/examples/x86-fb.list to src/l4/conf/modules.list,I use QEMU to boot,the boot process appears to be normal: ....... fbdrv | Starting server loop mag | mapped frame buffer at 0x200000 mag | View::Info: mag | flags: 0 mag | size: 1280x1024 pos: 0, 0 mag | bytes_per_line: 2560 mag | buffer_offset: 0 mag | RGBA(2): 5(11):6(5):5(0):0(0) mag | memory 200000-600000 mag | Plugin: Mag_client service started mag | Plugin: Frame-buffer service started mag | L4INPUT native mode activated mag | L4INPUT: !!! W A R N I N G !!! mag | L4INPUT: Please, do not use Fiasco's "-esc" with L4INPUT. mag | L4INPUT: !!! W A R N I N G !!! mag | serio: i8042 AUX port at 0x60,0x64 irq 12 mag | serio: i8042 KBD port at 0x60,0x64 irq 1 mag | input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1 mag | input: AT Translated Set 2 keyboard on isa0060/serio0 mag | connect "ImExPS/2 Generic Explorer Mouse", isa0060/serio1/input0 mag | connect "AT Translated Set 2 keyboard", isa0060/serio0/input0 spectrum| x:640 y:480 bit/pixel:16 bytes/line:1280 But How can I input some shell command? -------------------------------------------------------- ZTE Information Security Notice: The information contained in this mail (and any attachment transmitted herewith) is privileged and confidential and is intended for the exclusive use of the addressee(s). If you are not an intended recipient, any disclosure, reproduction, distribution or other dissemination or use of the information contained is strictly prohibited. If you have received this mail in error, please delete it and notify us immediately.
On Wed Apr 08, 2015 at 16:31:39 +0800, zhou.li9@zte.com.cn wrote:
How to do quickly in order to starting fiasco with a console shell? After copying src/l4/conf/examples/x86-fb.list to src/l4/conf/modules.list,I use QEMU to boot,the boot process appears to be normal: ....... fbdrv | Starting server loop mag | mapped frame buffer at 0x200000 mag | View::Info: mag | flags: 0 mag | size: 1280x1024 pos: 0, 0 mag | bytes_per_line: 2560 mag | buffer_offset: 0 mag | RGBA(2): 5(11):6(5):5(0):0(0) mag | memory 200000-600000 mag | Plugin: Mag_client service started mag | Plugin: Frame-buffer service started mag | L4INPUT native mode activated mag | L4INPUT: !!! W A R N I N G !!! mag | L4INPUT: Please, do not use Fiasco's "-esc" with L4INPUT. mag | L4INPUT: !!! W A R N I N G !!! mag | serio: i8042 AUX port at 0x60,0x64 irq 12 mag | serio: i8042 KBD port at 0x60,0x64 irq 1 mag | input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1 mag | input: AT Translated Set 2 keyboard on isa0060/serio0 mag | connect "ImExPS/2 Generic Explorer Mouse", isa0060/serio1/input0 mag | connect "AT Translated Set 2 keyboard", isa0060/serio0/input0 spectrum| x:640 y:480 bit/pixel:16 bytes/line:1280
But How can I input some shell command?
There is no "shell" normally. What do you expect to do? Adam -- Adam adam@os.inf.tu-dresden.de Lackorzynski http://os.inf.tu-dresden.de/~adam/
Is there a sample lua script or instructions for running dash directly in L4Re and not in L4Linux as it is included in the l4/pkg directory? On Wed, Apr 8, 2015 at 6:03 PM, Adam Lackorzynski <adam@os.inf.tu-dresden.de
wrote:
On Wed Apr 08, 2015 at 16:31:39 +0800, zhou.li9@zte.com.cn wrote:
How to do quickly in order to starting fiasco with a console shell? After copying src/l4/conf/examples/x86-fb.list to src/l4/conf/modules.list,I use QEMU to boot,the boot process appears to be normal: ....... fbdrv | Starting server loop mag | mapped frame buffer at 0x200000 mag | View::Info: mag | flags: 0 mag | size: 1280x1024 pos: 0, 0 mag | bytes_per_line: 2560 mag | buffer_offset: 0 mag | RGBA(2): 5(11):6(5):5(0):0(0) mag | memory 200000-600000 mag | Plugin: Mag_client service started mag | Plugin: Frame-buffer service started mag | L4INPUT native mode activated mag | L4INPUT: !!! W A R N I N G !!! mag | L4INPUT: Please, do not use Fiasco's "-esc" with L4INPUT. mag | L4INPUT: !!! W A R N I N G !!! mag | serio: i8042 AUX port at 0x60,0x64 irq 12 mag | serio: i8042 KBD port at 0x60,0x64 irq 1 mag | input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1 mag | input: AT Translated Set 2 keyboard on isa0060/serio0 mag | connect "ImExPS/2 Generic Explorer Mouse", isa0060/serio1/input0 mag | connect "AT Translated Set 2 keyboard", isa0060/serio0/input0 spectrum| x:640 y:480 bit/pixel:16 bytes/line:1280
But How can I input some shell command?
There is no "shell" normally. What do you expect to do?
Adam -- Adam adam@os.inf.tu-dresden.de Lackorzynski http://os.inf.tu-dresden.de/~adam/
_______________________________________________ l4-hackers mailing list l4-hackers@os.inf.tu-dresden.de http://os.inf.tu-dresden.de/mailman/listinfo/l4-hackers
On Thu Apr 09, 2015 at 19:34:07 -0400, teclis High Elf wrote:
Is there a sample lua script or instructions for running dash directly in L4Re and not in L4Linux as it is included in the l4/pkg directory?
Just L4.default_loader:start({...}, "rom/dash") ? Adam -- Adam adam@os.inf.tu-dresden.de Lackorzynski http://os.inf.tu-dresden.de/~adam/
You could get a minimal basic command prompt by running ned in interactive mode. In l4/pkg/ned/server/src/Makefile change: ifeq (1,*0*) DEFINES += -DUSE_READLINE REQUIRES_LIBS += readline libc_be_file_stdin endif to ifeq (1,*1*) <------ changed to 1 DEFINES += -DUSE_READLINE REQUIRES_LIBS += readline libc_be_file_stdin endif and recompile ned then start moe like this: entry hello_world roottask moe -- -i module l4re module ned module hello_world The line *roottask moe -- -i* runs ned in interactive mode Then at the ned prompt do: Ned: L4.default_loader:start({}, "rom/hello_world") On Wed, Apr 8, 2015 at 4:31 AM, <zhou.li9@zte.com.cn> wrote:
How to do quickly in order to starting fiasco with a console shell? After copying src/l4/conf/examples/x86-fb.list to src/l4/conf/modules.list,I use QEMU to boot,the boot process appears to be normal: ....... fbdrv | Starting server loop mag | mapped frame buffer at 0x200000 mag | View::Info: mag | flags: 0 mag | size: 1280x1024 pos: 0, 0 mag | bytes_per_line: 2560 mag | buffer_offset: 0 mag | RGBA(2): 5(11):6(5):5(0):0(0) mag | memory 200000-600000 mag | Plugin: Mag_client service started mag | Plugin: Frame-buffer service started mag | L4INPUT native mode activated mag | L4INPUT: !!! W A R N I N G !!! mag | L4INPUT: Please, do not use Fiasco's "-esc" with L4INPUT. mag | L4INPUT: !!! W A R N I N G !!! mag | serio: i8042 AUX port at 0x60,0x64 irq 12 mag | serio: i8042 KBD port at 0x60,0x64 irq 1 mag | input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1 mag | input: AT Translated Set 2 keyboard on isa0060/serio0 mag | connect "ImExPS/2 Generic Explorer Mouse", isa0060/serio1/input0 mag | connect "AT Translated Set 2 keyboard", isa0060/serio0/input0 spectrum| x:640 y:480 bit/pixel:16 bytes/line:1280
But How can I input some shell command?
-------------------------------------------------------- ZTE Information Security Notice: The information contained in this mail (and any attachment transmitted herewith) is privileged and confidential and is intended for the exclusive use of the addressee(s). If you are not an intended recipient, any disclosure, reproduction, distribution or other dissemination or use of the information contained is strictly prohibited. If you have received this mail in error, please delete it and notify us immediately.
_______________________________________________ l4-hackers mailing list l4-hackers@os.inf.tu-dresden.de http://os.inf.tu-dresden.de/mailman/listinfo/l4-hackers
participants (3)
-
Adam Lackorzynski -
teclis High Elf -
zhou.li9@zte.com.cn