mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
65b55ec6c6
Changed initialization back Changed to NT IRQLs Check for return from main svn path=/trunk/; revision=1797
14 lines
454 B
Bash
14 lines
454 B
Bash
#!/bin/sh
|
|
/sbin/modprobe loop
|
|
echo "Installing to floppy."
|
|
mount -t vfat /bochs/1.44a.dos /mnt/floppy -o loop,rw
|
|
./install-system.sh /mnt/floppy
|
|
umount /mnt/floppy
|
|
echo "Installing to disk."
|
|
mount -t vfat /bochs/10M.vga.dos /mnt/floppy -o loop,offset=8704,rw
|
|
./install.sh /mnt/floppy
|
|
umount /mnt/floppy
|
|
echo "Installing to minix disk."
|
|
#mount -t minix /bochs/10M.vga.minix /mnt/floppy -o loop,offset=8704,rw
|
|
#./install.sh /mnt/floppy
|
|
#umount /mnt/floppy
|