bootOS icon indicating copy to clipboard operation
bootOS copied to clipboard

Files not found on USB stick

Open jakiki6 opened this issue 5 years ago • 6 comments

Why can bootOS not read files from a USB stick if i copied it onto and boot? Everytime i enter a command it stops working and shows a blinking cursor. Example: $dir

jakiki6 avatar Jan 19 '20 10:01 jakiki6

bootOS is designed to work with floppy disks. Probably it would need modifications to run with your USB stick. You aren't telling me the computer model, processor, nor size of USB disk. Maybe replacing "xor dx,dx" just below the "disk:" label with "mov dx,0x0080", cannot guarantee it because I don't have tested it, not sure if the USB disk will be available at that drive number.

nanochess avatar Jan 22 '20 21:01 nanochess

I tried to add a "mov byte [0xffff], dl" at the direct start and a "mov dl, byte[0xffff]" below the "xor dx, dx" but this doesn't solve the problem

jakiki6 avatar Jan 23 '20 19:01 jakiki6

If you are booting from USB, probably it's due to the emulated mode. More modern BIOS / UEFI boards can identify it as a USB hard disk, but some older ones can emulate USB drives as a hard drive, floppy disk or CD-ROM. Also CD-ROMs could be able to emulate themselves as hard disk or floppy disk... You would need to check what emulation mode (if any) is being used by your board when accessing the floppy disk, and continue from there.

piranna avatar Jun 25 '20 19:06 piranna

Ok nvm I have my own fork which works fine.

jakiki6 avatar Oct 10 '20 17:10 jakiki6

Glad you could make it to work.

I've a Lenovo laptop with bootable USB but I don't have had the time to research it and make it to work.

It is still in my TO-DO list.

nanochess avatar Oct 11 '20 15:10 nanochess

Btw you can check out my fork here I've put a lot of work in it and it has some cool features.

jakiki6 avatar Oct 11 '20 18:10 jakiki6