Jump to content

alive64

Üye
  • Posts

    55
  • Joined

  • Last visited

Posts posted by alive64

  1. 7 minutes ago, serhat100 said:

    g4d_cmd=\"find --set-root /fm.loop;/NTBOOT NT6=(hd0,0)/KMPE/PE64W10.wim" 

    file path  (hd0,msdos1)/KMPE/PE64W10.wim  should be

    negative test result

    Device naming is different between GRUB2 and GRUB4DOS.

    In GRUB2, Partitions are numbered from 1 instead of 0 while drives are still numbered from 0, and prefixed with partition-table type.

  2. On 3/4/2019 at 4:04 PM, serhat100 said:
    
    @alive64thank you this linux16 (wimboot) / wimboo t => linux16 (wimboot) / wimboo t pause change worked

    'NTBOOT' method never fails to grub4dos error

    you mean 'NTBOOT' method always fails to grub4dos error?

    maybe you modified something in grubfm.iso so grub4dos couldn't find the wim file or NTBOOT files

    -- BOOTMGR/NTLDR only supports (hdx,y)
    			if device_type == "1" then
    				if grub.file_exist ("/NTBOOT.MOD/NTBOOT.NT6") then
    					-- NTBOOT NT6 WIM
    					icon = "nt6"
    					tog4dpath (file, device, device_type)
    					command = "g4d_cmd=\"find --set-root /fm.loop;/NTBOOT NT6=" .. g4d_file .. "\";" .. 
    					 "linux $prefix/grub.exe --config-file=$g4d_cmd; "
    					name = grub.gettext("Boot NT6.x WIM (NTBOOT)")
    					grub.add_icon_menu (icon, command, name)
    				end

    you should adjust the path of /NTBOOT and make sure it can load /NTBOOT.MOD/NTBOOT.MOD & /NTBOOT/NTBOOT.NT6 correctly.

     

  3. 1 hour ago, serhat100 said:

    @alive64 

    
    使用以下代碼的主wim文件
     -- wimboot
                if grub.file_exist ("/wimboot") then
                    icon = "wim"
                    command = "set lang=en_US; terminal_output console; enable_progress_indicator=1; loopback wimboot /wimboot; linux16 (wimboot)/wimboot; initrd16 newc:bootmgr:(wimboot)/bootmgr newc:bcd:(wimboot)/bcd newc:boot.sdi:(wimboot)/boot.sdi newc:boot.wim:" .. file
                    name = grub.gettext("Boot NT6.x WIM (wimboot)")
                    grub.add_icon_menu (icon, command, name)
                end
    你能看一下開機結束時的凍結問題嗎?謝謝   錯誤的原因是什麼?
    
    linux16 (wimboot)/wimboot  => linux16 (wimboot)/wimboot pause

    adding a 'pause' parameter may have better compatibility . if it doesn't work , you can try 'NTBOOT' or other method.

     

     

    • Thanks 1
×
×
  • Create New...