Changeset 1575 in MondoRescue


Ignore:
Timestamp:
Jul 26, 2007, 1:10:44 PM (17 years ago)
Author:
Bruno Cornec
Message:

Fix a bug in interactive mode on ia64 where lilo wasn't forced.

Location:
branches/2.2.5
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi/mindi

    r1567 r1575  
    31343134    fi
    31353135fi
    3136 if [ _"$MONDO_SHARE" = _"" ] ; then
     3136if [ _"$MONDO_SHARE" = _"" ] && [ "$ARCH" != "ia64" ]; then
    31373137    echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot CD/floppies (y/[n]) ?"
    31383138    read ch
  • branches/2.2.5/mondo/src/common/libmondo-devices.c

    r1540 r1575  
    23292329            finish(1);
    23302330        }
     2331// Interactive mode:
     2332#ifdef __IA64__
     2333        bkpinfo->make_cd_use_lilo = TRUE;
     2334#else
    23312335        bkpinfo->make_cd_use_lilo = FALSE;
     2336#endif
    23322337        bkpinfo->backup_data = TRUE;
    23332338        bkpinfo->verify_data =
Note: See TracChangeset for help on using the changeset viewer.