mshell(PeterSuh-Q3) v1.0.1.0 Release

요약

배포 이미지 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 이후의 장치로 존재할 수도 있기 때문입니다. hd0 대신에 정적으로 set root=(hd0,msdos3)를 사용하는 경우에는 hd# 대신 hd0과 미스매치하여 부팅이 불가능할 수 있습니다.

Tiny Core Linux 버전 12.0 (커널 5.10.3)에서 최신 장치와의 호환성을 향상시키기 위해 버전 14.0 (커널 6.1.2)으로 업그레이드했습니다.
스크린샷 2023-12-18 오후 12 57 10

원문 내용

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# 으로 미스매치해서 부팅이 안될 수 있습니다.

1.0.1.0 Upgrade from Tinycore Linux version 12.0 (kernel 5.10.3) to 14.0 (kernel 6.1.2) 
to improve compatibility with the latest devices.
스크린샷 2023-12-18 오후 12 57 10

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