[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: APUS Debian Boot-Floppies Images and bugs



hi,

> >    #if cpu(sparc) || #cpu(powerpc)
> >    const char *fs_type_tab[] = {  "ext2", NULL };
> >    #else
> >    const char *fs_type_tab[] = { "msdos", "ext2", NULL };
> >    #endif
> > as you can understand is impossible for a powerpc machine
> > to load a msdos partition, so i have modified it so:
> >    #if cpu(sparc) || #cpu(powerpc)
> >    const char *fs_type_tab[] = { "msdos", "ext2", NULL };
> >    #else
> >    const char *fs_type_tab[] = { "msdos", "ext2", NULL };
> >    #endif
> 
> I changed this to :
> 
>  #if cpu(sparc)
>  const char *fs_type_tab[] = { "msdos", "ext2", NULL };
>  #else
>  const char *fs_type_tab[] = { "msdos", "ext2", NULL };
>  #endif

surely,

#if cpu(sparc)
const char *fs_type_tab[] = { "ext2", NULL };
#else
const char *fs_type_tab[] = { "msdos", "ext2", NULL };
#endif
                              
this would give the powerpc the msdos and ext2, but keep the sparc - which 
orginally didnt have the msdos option - as it was.
                                                                                   

> Ok, but like said most amiga have only the 720/880Ko floppy variety.

most A4k's have a 1.76Mb internal, a lot of A1200 people have an external
HD floppy, but internal was 880k - not possible to have some choose option
(df0, df1 or skip?)

alan



Reply to: