USB-FAT32-Bootloader
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A simple FAT32 bootloader written in assembly to boot from USB drives.
A simple FAT32 bootloader written in assembly to boot from USB drives.

## What this bootloader can do:

It can load the first file( which should be a file less than 4096 bytes) which is located in a USB drive with a FAT32 file
system to the memory and hand over the execution to that program.

## Steps to use the Bootloader:

1. Compile the bootloader.
`nasm ­f bin ­o boot.bin` 2. Unmount the USB device.
`sudo umount ` 3. Format the USB device to FAT32 file system.
`sudo /sbin/mkdosfs ­F 32 ` 4. Copy the Bootloader to the USB device.
`sudo dd if=boot.bin of=` 5. Copy the compiled kernel to the USB device (just as you copy any usual file to the USB device). 6. Restart the computer and boot from the USB device!. More information can be found in the pdf in the doc folder. Don't forget to leave a comment in http://blog.ishans.info/2012/01/19/a-simple-fat32-bootloader-written-in-assembly-to-boot-from-usb-drives/ [![githalytics.com alpha](https://cruel-carlota.pagodabox.com/c61d5574272fc7a7e348d2ad649a183e "githalytics.com")](http://githalytics.com/ishanthilina/USB-FAT32-Bootloader)

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。