mshell(PeterSuh-Q3) v1.0.2.4 Release

요약

"Tiny Core Image Build" 부트 엔트리에서는 첫 번째 배포 이미지 img의 /boot/grub/grub.cfg에서
"set root" 대신 파일 시스템의 UUID를 찾도록 변경한 부분이 누락되어 img 파일이 수정되어 다시 배포되었습니다.

"set root=(hd0,msdos3)"
-> "search --set=root --fs-uuid 6234-C863 --hint hd0,msdos3"

랩탑과 같이 부팅 장치의 순서를 조정할 수 없는 경우
"Tiny Core Image Build" 부트 엔트리에 진입할 수 없을 수 있습니다.
왜냐하면 UUID를 검색하여 부팅 장치를 동적으로 찾을 때
hd0 대신 hd1 이후에 장치로 존재하는 경우도 발견될 수 있기 때문입니다.
정적으로 set root=(hd0,msdos3)을 사용하는 경우
hd0 대신 hd#와 일치하지 않아 부팅이 불가능할 수 있습니다.

원문 내용

1.0.1.1 Fix monitor fuction about ethernet infomation
1.0.1.2 Fix for SA6400
1.0.2.0 Remove restrictions on use of DT-based models when using HBA (apply mpt3sas blacklist instead)
1.0.2.1 Changed extension file organization method
1.0.2.2 Recycle initrd-dsm instead of custom.gz (extract /exts), The priority starts from custom.gz
1.0.2.3 Added RedPill bootloader hard disk porting function
1.0.2.4 Added NVMe bootloader support

In the "Tiny Core Image Build" boot entry in /boot/grub/grub.cfg of the first deployment image img,
the part that changed to search for the UUID of the file system instead of "set root" was missing,
so the img file was modified and distributed again.

"set root=(hd0,msdos3)"
-> "search --set=root --fs-uuid 6234-C863 --hint hd0,msdos3"

If you cannot adjust the order of boot devices, such as in the case of a laptop
You may not be able to enter the "Tiny Core Image Build" boot entry.
because,
When dynamically finding the boot device by searching UUID,
You can also find cases where it exists as a device after hd1 rather than hd0.
When using set root=(hd0,msdos3) statically
Booting may not be possible due to a mismatch with hd# instead of hd0.

(한국어 번역)
최초 배포이미지 img 의 /boot/grub/grub.cfg 의 "Tiny Core Image Build" 부트엔트리내용에서
"set root" 대신 파일시스템의 UUID를 검색하도록 변경한 부분이 누락되어 img 파일을 다시 수정배포했습니다.

"set root=(hd0,msdos3)"
-> "search --set=root --fs-uuid 6234-C863 --hint hd0,msdos3"

랩탑의 경우과 같이 부트 장치의 순서를 조정할 수 없는 경우
"Tiny Core Image Build" 부트엔트리에 진입을 못할 수 있습니다.
왜냐하면,
UUID 를 검색해서 부트장치를 동적으로 찾는 경우는
hd0 가 아닌 hd1 이후의 장치로 존재하는 경우도 찾아낼 수 있는데,
set root=(hd0,msdos3) 를 정적으로 사용하는 경우
hd0 가아닌 hd# 으로 미스매치해서 부팅이 안될 수 있습니다.

링크 : https://github.com/PeterSuh-Q3/tinycore-redpill/releases/tag/v1.0.2.4