1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

Fix off-by-one error in fd_native_types that results in a panic on boot

for machines with 2.88M floppies.

Reviewed By: phk
This commit is contained in:
Peter Edwards 2004-10-10 23:39:59 +00:00
parent 08de85f54a
commit 8fe457d687
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136360

View File

@ -173,6 +173,7 @@ static struct fd_type *fd_native_types[] = {
fd_searchlist_12m, /* FDT_12M */
fd_searchlist_720k, /* FDT_720K */
fd_searchlist_144m, /* FDT_144M */
fd_searchlist_288m, /* FDT_288M_1 (mapped to FDT_288M) */
fd_searchlist_288m, /* FDT_288M */
};