Takahiro Yamada

Results 112 comments of 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! ![mount_1440_and_1232_ok](https://user-images.githubusercontent.com/61556504/174392048-3f22a07d-0101-4016-b73f-459058bded36.png) 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. ![bootopt](https://user-images.githubusercontent.com/61556504/175099123-88cf262f-b525-4dd1-9fbd-94a0ee124bdb.png) $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. ![bootopt_TZ](https://user-images.githubusercontent.com/61556504/175782365-ba1d39f0-ede4-4c55-89ec-118001adc16e.png) ![bootopt_TZ2](https://user-images.githubusercontent.com/61556504/175782370-0aca1bf0-cba2-4995-8447-1564ba30974b.png)