Displaying 14 results from an estimated 14 matches for "apple_hf".
Did you mean:
apple_hfs
2014 Jul 30
2
isohybrid: slint64-14.1.iso: unable to find mac efi image
...oburn so now I can play
with it too ;)
> I forgot to advise (or misadvise) -isohybrid-apm-hfsplus with
> the image /isolinux/efiboot.img . So we only got one APM
> partition here. A slight deviation from mjg59's layout.
>
> It is a lie to give efiboot.img the partition type Apple_HFS.
> isohybrid.c does it that way. So the perfect mimic would be
> -e isolinux/efiboot.img \
> -isohybrid-gpt-basdat -isohybrid-apm-hfsplus \
> instead of
> -e isolinux/efiboot.img \
> -isohybrid-gpt-basdat \
I tried that and got this, which is what was exp...
2014 Jul 29
0
isohybrid: slint64-14.1.iso: unable to find mac efi image
...006400
GPT partname local : 1 ISOHybrid
...
GPT start and size : 2 220 2880
GPT partition path : 2 /isolinux/efiboot.img
...
GPT start and size : 3 3100 5472
GPT partition path : 3 /isolinux/macboot.img
...
APM partition name : 1 EFI
APM partition type : 1 Apple_HFS
APM start and size : 1 775 1368
APM partition path : 1 /isolinux/macboot.img
I forgot to advise (or misadvise) -isohybrid-apm-hfsplus with
the image /isolinux/efiboot.img . So we only got one APM
partition here. A slight deviation from mjg59's layout.
It is a lie to give efiboot.i...
2014 Jul 29
2
isohybrid: slint64-14.1.iso: unable to find mac efi image
Hi,
On 29/07/2014 21:34, Thomas Schmitt wrote:
> Nevertheless i advise Didier to simply try with 0xef rather than Mac.
At least the ISO will then have MBR, GPT and APM entries for the file
macboot.img.
I did that, and also tried the xorriso command you posted.
I uploaded both ISO images on http://slint.fr/misc/MacBoot resp. renamed:
slint64-14.1-Thomas_mkisofs.iso
2014 Jun 22
0
[PATCH 2/6] utils/isohybrid.c: Correct blocking factor in APM partition block counts
...endian_short(0x504d);
part->map_count = bendian_int(3);
part->start_block = bendian_int(efi_lba);
- part->block_count = bendian_int(efi_count);
+ part->block_count = bendian_int(efi_count / 4);
strcpy(part->name, "EFI");
strcpy(part->type, "Apple_HFS");
part->data_start = bendian_int(0);
- part->data_count = bendian_int(efi_count);
+ part->data_count = bendian_int(efi_count / 4);
part->status = bendian_int(0x33);
part = (struct apple_part_header *)(gpt + 4096);
@@ -868,11 +868,11 @@ initialise_apm(uint8_...
2014 Jun 21
0
isohybrid has 2 variants
...0aa11aa1100306543ecac
GPT partition flags: 3 0x0000000000000000
GPT start and size : 3 10284 40320
GPT partition path : 3 /isolinux/macboot.img
APM : N Info
APM block size : 2048
APM gap fillers : 0
APM partition name : 1 EFI
APM partition type : 1 Apple_HFS
APM start and size : 1 43 10064
APM partition path : 1 /isolinux/efiboot.img
APM partition name : 2 EFI
APM partition type : 2 Apple_HFS
APM start and size : 2 2571 40320
APM partition path : 2 /isolinux/macboot.img
--------------------------------------------------------------...
2016 Feb 22
1
How to understand partition table on hybrid ISO image?
Hi,
if I inspect an hybrid ISO with tools like fdisk and gdisk, then looks
like hybrid ISO has both the MBR and GPT in order to support both the
BIOS and UEFI:
# gdisk -l /dev/sdb
GPT fdisk (gdisk) version 0.8.10
Partition table scan:
MBR: MBR only
BSD: not present
APM: not present
GPT: present
Found valid MBR and GPT. Which do you want to use?
1 - MBR
2 - GPT
3 - Create blank GPT
2014 Jun 21
3
isohybrid has 2 variants
I'm going to get the hang of this mailing list eventually. Apologies for any duplicate emails..
>Ian Bannerman:
>> While I did know the .exe variant was not official / untrusted,
>Is there a special reason for this ? (Except the known bugs which affect Linux binaries, too.)
Not really. I had never found a convincing source for it and had seen previous list entries like this
2010 Oct 07
1
hfsutils package
Has anyone used the hfsutils package?
I tried the following and get an error:
hfs mount ../vlc-1.1.3-intel.dmg
hfsutils version 3.2.6 - Copyright (C) 1996-1998 Robert Leslie
This is free software but comes with ABSOLUTELY NO WARRANTY.
Type `license' for details.
expected integer but got "../vlc-1.1.3-intel.dmg"
while executing
"hfs mount $path $partno"
2014 Nov 10
0
Boot fails in a VMware player VM - syslinux 6.03
...8b6b72699c7
GPT partition flags: 2 0x1000000000000001
GPT start and size : 2 3392 896
GPT partition path : 2 /boot/grub/efi.img
APM : N Info
APM block size : 2048
APM gap fillers : 0
APM partition name : 1 EFI
APM partition type : 1 Apple_HFS
APM start and size : 1 848 224
APM partition path : 1 /boot/grub/efi.img
The UEFI boot image /boot/grub/efi.img is advertised by
El Torito for CD, by MBR, GPT, and APM for USB-stick.
So the firmware has a lot of entry points to pick from.
(I believe that the APM equipment is put here i...
2014 Jun 22
16
Announcing a patch series for isohybrid.c
Hi,
following will be 6 patch proposals for isohybrid.c
1: Encode GPT partition names as UTF-16LE
2: Correct blocking factor in APM partition block counts
3: Correct end block address of first GPT partition
4: Write GPT backup to the very end of the image
5: Change all fseek(3) to fseeko(3)
6: Introduce option --mbr and make isohybrid.c compilable standalone
If the form needs adjustments,
2011 Aug 05
3
isolinux: Generate GPT and Mac bootable images
...art_header *)(gpt + 2048);
+
+ part->signature = bendian_short(0x504d);
+ part->map_count = bendian_int(3);
+ part->start_block = bendian_int(efi_lba);
+ part->block_count = bendian_int(efi_count);
+ strcpy(part->name, "EFI");
+ strcpy(part->type, "Apple_HFS");
+ part->data_start = bendian_int(0);
+ part->data_count = bendian_int(efi_count);
+ part->status = bendian_int(0x33);
+
+ part = (struct apple_part_header *)(gpt + 4096);
+
+ if (mac_lba)
+ {
+ part->signature = bendian_short(0x504d);
+ part->map_count = be...
2012 May 06
1
isohybrid.c, problem reports and questions
...lendian_64(psize);
one should probably subtract 1 from psize before submitting it to
lendian_64().
-----------------------------------------------------------------------
The second Apple partition map entry points to the VFAT image file
/isolinux/efiboot.img but announces as partition type "Apple_HFS".
Is this ok ?
-----------------------------------------------------------------------
What is the reason for calling function reverse_uuid() ?
Is it intentional that it only byteswaps the first 8 of 16 bytes ?
-----------------------------------------------------------------------
The...
2014 Nov 10
1
Boot fails in a VMware player VM - syslinux 6.03
...1000000000000001
> GPT start and size : 2 3392 896
> GPT partition path : 2 /boot/grub/efi.img
> APM : N Info
> APM block size : 2048
> APM gap fillers : 0
> APM partition name : 1 EFI
> APM partition type : 1 Apple_HFS
> APM start and size : 1 848 224
> APM partition path : 1 /boot/grub/efi.img
>
> The UEFI boot image /boot/grub/efi.img is advertised by
> El Torito for CD, by MBR, GPT, and APM for USB-stick.
> So the firmware has a lot of entry points to pick from.
> (I bel...
2014 Nov 10
4
Boot fails in a VMware player VM - syslinux 6.03
Hi there,
I failed to boot an installer in a VMware player (Version6.0.3
build-1895310)
using syslinux 6.03, be it off an hybrid ISO image and an USB stick.
Booting succeeds if the VM is set to use a BIOS firmware with both media,
but fails using an efi firmware.
Trying to boot off the ISO image I get an error message "The firmware
encountered an unexpected exception"
Trying to