Takahiro Yamada
Takahiro Yamada
Hello @ghaerr , I have done the first entry in my to-do list on https://github.com/jbruchon/elks/issues/1312#issuecomment-1152870664 and now I have been working the second one. I modified bioshd as follows, finally...
It seems CONFIG_VAR_SECTOR_SIZE is only defined for CONFIG_IMG_FD1232. elks/include/linuxmt/config.h #ifdef CONFIG_IMG_FD1232 /* FD1232 uses 1K byte sectors */ #define CONFIG_VAR_SECTOR_SIZE /* sector size may vary across disks */ #endif
I will try moving this under ifdef CONFIG_ARCH_PC98 and always define it.
Thank you @ghaerr , It worked!  I will do some more testing.
Hello @ghaerr I added int1B codes similar to boot_sect to Setup.S for bootopts. https://github.com/tyama501/elks/commit/162588635bc8b76803eb77bd4b38932734b6ecd2 I haven't debugged much yet, but it seems it still says ignored.  $DEF_OPTSEG for PC-98...
Oops it seems I destroyed $ax. I will try again tomorrow.
Hello @ghaerr , > You said some time ago that PC-98 uses segment 0x50, correct? Correct. I modified and this code worked at least for FD1232. https://github.com/tyama501/elks/compare/9d65759...a2c7c64 Booting with option...
Hello @ghaerr > What is the reason for the deletion of the inc %dl on line 993? I deleted the inc %dl under #ifdef CONFIG_ARCH_PC98 on line 993 and moved...
root=hda1 seems working. I have a question about TZ. When I set TZ=JST-9 in bootopts it appears as TZ=-9 while booting but when I printenv does not show TZ values....
Thank you @ghaerr With your patch it worked.  