blob: 95b928c4585b36cf662ed90b420619e0fa42a151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
## <a name="Make_a_disk_image"> Make a disk image </a>
This is just a reminder to myself currently.
/bin/dd if=/dev/zero of=gnu.img count=224000
/sbin/sfdisk -C 58 -H 16 -S 63 -D gnu.img<<EOT
,,83,*,0,1,1
EOT
losetup -o 32256 /dev/loop0 gnu.img
mke2fs -o hurd -L GNU -b 4096 /dev/loop0
## <a name="Install_GNU_Hurd"> </a> Install GNU/Hurd
mkdir image
mount /dev/loop0 image
cd image/
/usr/share/crosshurd/makehurddir.sh `pwd` i386 gnu
cd ..
umount image
losetup -d /dev/loop0
## <a name="Make_Boot_ISO"> </a> Make Boot ISO
I use this for testing OSKit...
mkdir -p iso/boot/grub
cp /lib/grub/i386-pc/stage2_eltorito iso/boot/grub/
cp oskit-mach.gz iso/boot/
cat >iso/boot/grub/menu.lst << EOF
title GNUmach 2.0 (OSKit-Mach)
root (cd)
kernel /boot/oskit-mach.gz root=device:hd0s1 --
root (hd0,0)
module /hurd/ext2fs.static --multiboot-command-line=${kernel-command-line} \
--host-priv-port=${host-port} --device-master-port=${device-port} \
--exec-server-task=${exec-task} -T typed ${root} $(task-create) \
$(task-resume)
module /lib/ld-2.3.2.so /hurd/exec $(exec-task=task-create)
title GNU/Hurd (GNUmach 1.3)
root (hd0,0)
kernel /boot/gnumach.gz root=device:hd0s1
module /hurd/ext2fs.static --multiboot-command-line=${kernel-command-line} \
--host-priv-port=${host-port} --device-master-port=${device-port} \
--exec-server-task=${exec-task} -T typed ${root} $(task-create) \
$(task-resume)
module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
EOF
mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 \
-boot-info-table -o grub.iso iso
## <a name="Booting_Qemu"> Booting Qemu </a>
qemu -user-net -isa -boot d -cdrom grub.iso -hda gnu.img
The switch `-isa` is for current gnumach.gz on hda.
-- [[Main/JoachimNilsson]] - 11 Apr 2005
|