diff options
author | Miles Bader <miles@gnu.org> | 1997-07-03 20:18:50 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-07-03 20:18:50 +0000 |
commit | 09d82e40c54eb65d0c4910120d467cc7e7b37ed7 (patch) | |
tree | 6f2696501ab929104ef4649d379b69733b8c3750 | |
parent | 755890830e0f6891f64c572fa2bff4db18d52c2f (diff) |
Initial checkin
-rw-r--r-- | release/bfloppy1-special.copy | 1 | ||||
-rw-r--r-- | release/bfloppy1.boot | 14 | ||||
-rw-r--r-- | release/bfloppy1.copy | 7 | ||||
-rw-r--r-- | release/bfloppy1.grub | 30 | ||||
-rw-r--r-- | release/bfloppy2-special.copy | 1 | ||||
-rw-r--r-- | release/bfloppy2.copy | 4 |
6 files changed, 57 insertions, 0 deletions
diff --git a/release/bfloppy1-special.copy b/release/bfloppy1-special.copy new file mode 100644 index 00000000..c92545e1 --- /dev/null +++ b/release/bfloppy1-special.copy @@ -0,0 +1 @@ +rename boot/grub/menu.lst copy bfloppy1.grub diff --git a/release/bfloppy1.boot b/release/bfloppy1.boot new file mode 100644 index 00000000..92ab94c8 --- /dev/null +++ b/release/bfloppy1.boot @@ -0,0 +1,14 @@ +# Boot script file for booting GNU Hurd from a boot floppy. Each line +# specifies a file to be loaded by the boot loader (the first word), and +# actions to be done with it. + +# First, the bootstrap filesystem. It needs several ports as arguments, +# as well as the user flags from the boot loader. +/hurd/ufs.static --bootflags=${boot-args} --host-priv-port=${host-port} --device-master-port=${device-port} --exec-server-task=${exec-task} -Tgunzip:device ${root-device} $(task-create) $(prompt-task-resume) + +# Now the exec server; to load the dynamically-linked exec server program, +# we have the boot loader in fact load and run ld.so, which in turn +# loads and runs /hurd/exec. This task is created, and its task port saved +# in ${exec-task} to be passed to the fs above, but it is left suspended; +# the fs will resume the exec task once it is ready. +/lib/ld.so.1 /hurd/exec $(exec-task=task-create) diff --git a/release/bfloppy1.copy b/release/bfloppy1.copy new file mode 100644 index 00000000..312fe70c --- /dev/null +++ b/release/bfloppy1.copy @@ -0,0 +1,7 @@ +mkdir boot +mkdir boot/grub +gzip objcopy boot/gnumach +gzip objcopy boot/serverboot +copy boot/grub/stage1 +copy boot/grub/stage2 +copy boot/grub/ffs_stage1_5 diff --git a/release/bfloppy1.grub b/release/bfloppy1.grub new file mode 100644 index 00000000..4036dd5a --- /dev/null +++ b/release/bfloppy1.grub @@ -0,0 +1,30 @@ +# This is the amount grub waits before booting the default entry +timeout= 5 + +# Tell which entry to boot by default. Note that this is origin zero +# from the beginning of the file. +default= 0 + +# Note that to GRUB, all hard disks are `hd' and all floppy disks are `fd'. +# To Mach, SCSI disks are `sd' and IDE type disks are `hd'. Use +# GRUB names in the `root' command and prefixing filenames. Use a +# Mach name as the `root' arg for the kernel, and whenever running the Hurd. + + +# These two entries are for SCSI disks +# Entry 0: +title= fd0 +root= (fd0) +kernel= /boot/gnumach.gz root=fd0 +module= /boot/serverboot.gz +pause=Insert boot-floppy #2 and hit RETURN... + +# Installation steps for GRUB hard disk boot blocks +# Entry 4: +title= Install grub from floppy onto hard disk +install= (fd0)+1 (hd0) (hd0,a)/boot/grub/stage2 0x8000 p + +# Entry 5: +title= Reinstall grub from hard disk to itself +install= (hd0)/boot/grub/stage1 (hd0) (hd0,a)/boot/grub/stage2 0x8000 p + diff --git a/release/bfloppy2-special.copy b/release/bfloppy2-special.copy new file mode 100644 index 00000000..7d85aca6 --- /dev/null +++ b/release/bfloppy2-special.copy @@ -0,0 +1 @@ +rename boot/servers.boot copy bfloppy1.boot diff --git a/release/bfloppy2.copy b/release/bfloppy2.copy new file mode 100644 index 00000000..78c9f95b --- /dev/null +++ b/release/bfloppy2.copy @@ -0,0 +1,4 @@ +mkdir hurd +mkdir lib +objcopy lib/ld.so.1 +objcopy hurd/ext2fs.static |