On 5/10/2018 1:53 PM, Phil Susi wrote:
> I'd say so. I can't reproduce the problem though by simply creating an
> image file and making the partitions as you describe. Can you send your
> whole MBR so I can try to reproduce it and see if fixing this logic
> error fixes it?
Ok, after looking at t
On 4/10/2018 7:59 AM, bouke_1 wrote:
> I quickly looked through the atari_probe routine in the Atari patch
> code, and I may have found the logic error. At the bottom:
>
> } /* no XGM so try ICD */
> + else if (atr_part_valid (&table.icd_part[0], rs_hd_size)
> + && at
Can you provide the output of fdisk -l for this drive?
On 4/9/2018 12:54 PM, Hugo Haldi wrote:
> Command History:
> list
> print
> print devices
> sel sdf
> sel /dev/sdf
>
> Error: FPE_INTDIV (Integer: divide by zero)Abandon
signature.asc
Description: OpenPGP digital signature
The msdos partition table does not support names; use gpt for that.
On 4/9/2018 12:03 AM, Will Haley wrote:
> https://www.gnu.org/software/parted/manual/parted.html says, regarding
> `mkpart`, that a name can be specified as an argument to `mkpart`.
>
> https://www.gnu.org/software/parted/manual/
I don't see a problem there.
On 4/8/2018 11:54 AM, Go Getter wrote:
> Model: Unknown (unknown)
> Disk /dev/sda1: 364,152,43
> Sector size (logical/physical): 512B/512B
> BIOS cylinder,head,sector geometry: 364,255,63. Each cylinder is 8225kB.
> Partition Table: loop
> Disk Flags:
>
> Number Star
It seems that when no flags are supported, set and disk_set pass null
for the filter, which makes the prompt accept any string as valid input.
That fails to look up a flag bit, then tries to throw an exception
naming the flag, but the flag name is null, so it bugs. Thanks for
reporting this, it i