diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-04 13:41:39 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-04 13:41:39 +0100 |
commit | 40d1a8071fc6e8596950a39ab6aa82c4be3b4edc (patch) | |
tree | a1889770b96116778aa91dc3d88edf0d8b567c0e | |
parent | 7a07b4a4398e02aead731b0c38af143d6a2fe41a (diff) | |
download | jeyzuos-40d1a8071fc6e8596950a39ab6aa82c4be3b4edc.zip jeyzuos-40d1a8071fc6e8596950a39ab6aa82c4be3b4edc.tar.gz |
add inw, outw test script
-rw-r--r-- | Makefile | 3 | ||||
-rwxr-xr-x | tools/test_port | 11 |
2 files changed, 13 insertions, 1 deletions
@@ -8,7 +8,8 @@ ISO=kernel.iso all: run run: kernel - qemu-system-i386 -kernel $(KERNEL_DIR)/kernel.elf + ./tools/test_port & + qemu-system-i386 -kernel $(KERNEL_DIR)/kernel.elf -serial pty run-iso: $(ISO) qemu-system-i386 -hda $(ISO) diff --git a/tools/test_port b/tools/test_port new file mode 100755 index 0000000..dd1798a --- /dev/null +++ b/tools/test_port @@ -0,0 +1,11 @@ +#! /bin/bash + +PORT=/dev/pts/2 + +sleep 1 + +echo "write to $PORT" +echo "a" > $PORT + +echo "read from $PORT" +cat $PORT |