Your idea is equivalent to: GNU GRUB's MBR (Stage 1) + an ever expanding
Stage 1.5 for all popular partition types = Stage 1+ all-purpose Stage 1.5
put into the first sectors (within 63 sectors limit) of any bootable hard disk.
Is it?
Yes.
I think it should be able to load up GRLDR independently without relying on
,let's say, NT boot sector or other boot sectors. To boot up these boot sectors
should be the responsibility or task of GRLDR.
That depends on how you understand it. In actual use there is no problem at all. For FAT12/16/32, we use our own code entirely to boot GRLDR, while for GRLDR inside NTFS, we borrow the program in NT's bootsector to boot GRLDR. We only make use of the existing boot sector in the NTFS partition because we do not want to write an NTFS boot sector ourselves. (Writing such a bootsector program would be rather difficult.) Once GRLDR has been booted, it can of course boot the NTFS bootsector; at that time, using the chainloader command, what gets booted will be the usual NTLDR.
Do not confuse these two things: BOOTGRUB and GRLDR:
The sole purpose of BOOTGRUB is to find GRLDR and hand control over to GRLDR. Therefore, it does not matter by what means BOOTGRUB finds GRLDR. After GRLDR takes over control, GRLDR does not know which partition it is on, nor how it was booted. It was simply placed into memory by BOOTGRUB; it does not know its exact location on disk. GRLDR only runs its own code and does not care about anything else. Therefore, just like ordinary GRUB, it can use the chainloader command to boot any operating system, and of course it can also use any map command to emulate disks.
The division of labor between BOOTGRUB and GRLDR is very clear. BOOTGRUB only looks for people; GRLDR only does the work. Neither of them repeats things the other one also does. The one looking for people has no idea what the person being sought can do or wants to do. The person who is found is fully capable of doing his own work, but he will not know how he was found, nor who found him, from where, or by what method. He is like someone delivered to the workshop in a prison cart to do work.
So GRLDR could then boot up any OS relying on their own boot sector residing on
their own partition or boot up bootable disk-image files using virtualization commands.
Of course yes. The current BOOTGRUB and GRLDR, in a certain sense, have already (partly) achieved this goal. Its limitation is: GRLDR needs to be on a primary partition containing an NT BOOT SECTOR.
因为我们亲手创建,这个世界更加美丽。