Post Reply 
 
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IPXE + UEFI + Parted Magic (solved)
2016-01-30, 20:42 (This post was last modified: 2016-01-31 04:52 by MultimediaMan.)
Post: #2
RE: IPXE + UEFI + Parted Magic
I haven't had a chance to test this on a UEFI system, but I dare say your problem is related to not specifying an initrd path:

Code:
#!ipxe
set pmagic-path ${17}/Media-Depot/other/tools/pmagic

cpuid --ext 29 && set arch 64 || set arch 32

initrd ${pmagic-path}/initrd.img ||
initrd ${pmagic-path}/fu.img ||
initrd ${pmagic-path}/m${arch}.img ||
initrd ${pmagic-path}/files.cgz ||
chain ${pmagic-path}/bzImage${arch} initrd=initrd.img,fu.img,m${arch}.img,files.cgz edd=on vga=normal ||

exit

In a UEFI system, it is ~required~ that the initrd= specify which files to access in memory. I may be able to test this later today or tomorrow on a UEFI system, but this works flawlessly on a PCBIOS system.
The PMAGIC_2016_01_06.SQFS is contained within the mx.img file, and the syntax for multiple files in a kernel argument is comma-separated (some will handle multiple "initrd=", but not all).

If you want to Customize Parted Magic:

Code:
#!ipxe
set pmagic-path ${17}/Media-Depot/other/tools/pmagic

cpuid --ext 29 && set arch 64 || set arch 32

initrd ${pmagic-path}/initrd.img ||
initrd ${pmagic-path}/fu.img ||
initrd ${pmagic-path}/m${arch}.img ||
initrd ${pmagic-path}/files.cgz ||
chain ${pmagic-path}/bzImage${arch} initrd=initrd.img,fu.img,m${arch}.img,files.cgz edd=on eject=no firewall=no keymap=us vga=791 rdate=yes monday=3 ntpd=yes timeconfig=US/Central clockfmt=%R  ||

exit


Useful little distro.

"Thus far, you have been adrift within the sheltered harbor of my patience..."
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
IPXE + UEFI + Parted Magic (solved) - lightvik - 2016-01-30, 17:53
RE: IPXE + UEFI + Parted Magic - MultimediaMan - 2016-01-30 20:42
RE: IPXE + UEFI + Parted Magic - lightvik - 2016-01-31, 15:36
RE: IPXE + UEFI + Parted Magic - lightvik - 2016-01-31, 17:24
RE: IPXE + UEFI + Parted Magic - lightvik - 2016-02-01, 03:13



User(s) browsing this thread: 1 Guest(s)