This question can be answered clearly for everyone. The boot disk of EL TORI can only support 5 modes "No emulation/1.2/1.44/2.88/HD" without the help of other boot software. The so-called image of any size is actually an HD image.
To make a 2.88 boot image, you don't have to have a 2.88 floppy drive. You can convert it with WINIMAGE. Add this 2.88 image with WINISO. After making the boot ISO file, modify it with a hex editor
(Let me add a sentence: The reason for such cumbersome manual modification below is that when WINISO loads the image, it doesn't detect the format of the image, and it一律sets the image to 1.44M.)
Find the position of 34816 (this is a decimal number, and some editors display it in hexadecimal)
http://www2.zzu.edu.cn/ie/newdos/uploadImages/20035200255551978.jpg
Find the position of 14h in the picture. This 14h is the default loading address (LBA/RBA) of the boot image. Converting 14h to decimal is 20. It means the 20th sector. 20*2048=40960 (each sector of ISO9660 CD is 2048 bytes). Then find the position of 40960
http://www2.zzu.edu.cn/ie/newdos/uploadImages/20035200293183207.jpg
As shown in the figure, change 88 02 to 88 03. 03 is 2.88M
88 means bootable
The following numbers
00 No emulation (most boot software need to set this boot mode to this)
01 1.2
02 1.44
03 2.88
04 HD
For specific methods of manually making or modifying CD boot disks, take a look at the previous
Single-boot CD making 1
http://www2.zzu.edu.cn/ie/newdos/dispbbs.asp?boardID=11&ID=1094
Single-boot CD making 2
http://www2.zzu.edu.cn/ie/newdos/dispbbs.asp?boardID=11&ID=1095
And format descriptions from IBM and Phoenix
http://www2.zzu.edu.cn/ie/newdos/dispbbs.asp?boardID=11&ID=1096
Understanding these will play a very important role in making boot CDs.
Teamwork !