Skip to content

Commit 28abb28

Browse files
committed
Store brltty-3.0 in the repository.
git-svn-id: svn://mielke.cc/main/brltty@2 91a5dbb7-01b9-0310-9b5f-b28072856b6e
1 parent 079ef62 commit 28abb28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3155
-1989
lines changed

.gitignore

-17
This file was deleted.

Bootdisks/README

+7-7
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ to boot.img.
101101
So now the current directory should contain boot.img, brltty, and
102102
etcbrltty.
103103

104-
Now run the mkbd script. It will copy boot.img to myboot.img, and it will
105-
modify the syslinux.cfg: it will add a new boot entry called
106-
"brltty". That entry will have options to cause syslinux to load a
107-
ramdisk from a second floppy, instead of using the initrd.img on the
108-
first floppy. The BRLTTY entry has the "text" keyword parameter to
109-
trigger the text-mode install. mkbd also makes this new entry the default
110-
boot entry.
104+
Now run the mkbd script (which is located in the same directory as this
105+
README). It will copy boot.img to myboot.img, and it will modify the
106+
syslinux.cfg: it will add a new boot entry called "brltty". That entry will
107+
have options to cause syslinux to load a ramdisk from a second floppy, instead
108+
of using the initrd.img on the first floppy. The BRLTTY entry has the "text"
109+
keyword parameter to trigger the text-mode install. mkbd also makes this new
110+
entry the default boot entry.
111111

112112
Now run the mkinit script. It will get initrd.img (the initial ramdisk)
113113
from boot.img and call it initrd.gz. It will modify that image:

Bootdisks/mkbd

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
set -e
44

5+
# Make local mount points
6+
mkdir -p mnt1 mnt2
7+
58
# Work on a copy of bootdisk image
69
cp -f boot.img myboot.img
7-
mount myboot.img mnt1 -o loop -t ext2
10+
mount myboot.img mnt1 -o loop -t msdos
811

912
# Modify syslinux.cfg
1013
cat >cfg <<EOF

BrailleNote/README

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
This directory contains the BRLTTY driver for the BrailleNote
22
[http://www.braillenote.com], which is manufactured by Pulse Data International
3-
[http://www.pulsedata.co.nz] of New Zealand. It was implemented, and is being
4-
maintained, by Dave Mielke <[email protected]>. Thanks to Mike Pedersen
5-
<[email protected]> for his help and advice. As a component of BRLTTY,
6-
this driver is released under the terms of the GNU Public License. It has been
3+
[http://www.pulsedata.co.nz] of New Zealand. As a component of BRLTTY, this
4+
driver is released under the terms of the GNU Public License. It has been
75
tested with BraillNotes 18 and 32.
86

7+
It was implemented, and is being maintained, by Dave Mielke <[email protected]>.
8+
Thanks to Mike Pedersen <[email protected]> for his help and advice.
9+
910
There are a number of ways to put the BrailleNote into its Braille Terminal
1011
Mode. The quickest way is to use the direct keyboard shortcut
1112
backspace+enter+[2345]. Another way is to go to the Main Menu by pressing

0 commit comments

Comments
 (0)