diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-05 12:45:29 (GMT) |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-05 12:45:29 (GMT) |
| commit | 16b25789d234915be8a174176996ee70fda3ed89 (patch) | |
| tree | 24e53fb609659647bcd92fac3fd09c3bf8fc5656 | |
| parent | 317871f1a85816e3c0f405f00b2f081978fa9caa (diff) | |
| download | busybox-website-16b25789d234915be8a174176996ee70fda3ed89.tar.gz busybox-website-16b25789d234915be8a174176996ee70fda3ed89.tar.bz2 | |
live_bbox: make clipboard work, add short explanation how to use it
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| -rw-r--r-- | live_bbox/hda000000000.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000001.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000002.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000015.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000016.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000024.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/hda000000032.bin | bin | 65536 -> 65536 bytes | |||
| -rw-r--r-- | live_bbox/live_bbox.html | 12 |
8 files changed, 5 insertions, 7 deletions
diff --git a/live_bbox/hda000000000.bin b/live_bbox/hda000000000.bin Binary files differindex a3524f1..17deba0 100644 --- a/live_bbox/hda000000000.bin +++ b/live_bbox/hda000000000.bin diff --git a/live_bbox/hda000000001.bin b/live_bbox/hda000000001.bin Binary files differindex bf366f5..6f10602 100644 --- a/live_bbox/hda000000001.bin +++ b/live_bbox/hda000000001.bin diff --git a/live_bbox/hda000000002.bin b/live_bbox/hda000000002.bin Binary files differindex 4b90223..5481c6c 100644 --- a/live_bbox/hda000000002.bin +++ b/live_bbox/hda000000002.bin diff --git a/live_bbox/hda000000015.bin b/live_bbox/hda000000015.bin Binary files differindex 0a17cc5..d97785b 100644 --- a/live_bbox/hda000000015.bin +++ b/live_bbox/hda000000015.bin diff --git a/live_bbox/hda000000016.bin b/live_bbox/hda000000016.bin Binary files differindex c97c12f..95febef 100644 --- a/live_bbox/hda000000016.bin +++ b/live_bbox/hda000000016.bin diff --git a/live_bbox/hda000000024.bin b/live_bbox/hda000000024.bin Binary files differindex c97c12f..9982b72 100644 --- a/live_bbox/hda000000024.bin +++ b/live_bbox/hda000000024.bin diff --git a/live_bbox/hda000000032.bin b/live_bbox/hda000000032.bin Binary files differindex c97c12f..57f4dd3 100644 --- a/live_bbox/hda000000032.bin +++ b/live_bbox/hda000000032.bin diff --git a/live_bbox/live_bbox.html b/live_bbox/live_bbox.html index acc80c4..6e865ca 100644 --- a/live_bbox/live_bbox.html +++ b/live_bbox/live_bbox.html @@ -26,22 +26,20 @@ </style> </head> <body onload="start()"> -<table border="0"> -<tr valign="top"><td> <script type="text/javascript" src="utils.js"></script> <script type="text/javascript" src="term.js"></script> <script type="text/javascript" src="cpux86.js"></script> - <script type="text/javascript" src="jslinux.js"></script> -<div> Javascript PC Emulator is © 2011 Fabrice Bellard.<br> Used with author's permission.<br> The original code (and possibly newer version) is available at <a href="http://bellard.org/jslinux/">http://bellard.org/jslinux/</a>.<br> The source of GPLed components is available <a href="linuxstart-20120111.tar.gz">here</a>.<br> The BusyBox was built with <a href=".config">this config</a> from commit e8cfc3f693e8a0cbfc489564c76e00c074f63066.<br> Use Ctrl-Up, Ctrl-Down, Ctrl-PageUp and Ctrl-PageDown for scroll back.<br> -</div> -<td><input type="button" value="Clear clipboard" onclick="clear_clipboard();"><br><textarea row="4" cols="16" id="text_clipboard"></textarea> -</table> +Use "cat /dev/clipboard" and "echo Hello world >/dev/clipboard" to read from/write to clipboard.<br> +Binary data transfer to VM:<br> +"uuencode BINFILE BINFILE", paste result into clipboard, "uudecode /dev/clipboard -o/tmp/BINFILE" in VM.<br> +<input type="button" value="Clear clipboard" onclick="clear_clipboard();"><br> +<textarea row="4" cols="80" id="text_clipboard"></textarea> </body> </html> |
