Changeset 3889 in MondoRescue for branches/3.3/mondo/src


Ignore:
Timestamp:
Mar 10, 2024, 8:22:38 PM (16 months ago)
Author:
Bruno Cornec
Message:

Remove EFI references for ia64

Location:
branches/3.3/mondo/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mondo/src/common/libmondo-archive.c

    r3888 r3889  
    26502650    if (bkpinfo->boot_type == UEFI) {
    26512651        mr_asprintf(boot_type, "UEFI");
    2652     } else if (bkpinfo->boot_type == EFI) {
    2653         mr_asprintf(boot_type, "EFI");
    26542652    } else if (bkpinfo->boot_type == BIOS) {
    26552653        mr_asprintf(boot_type, "BIOS");
  • branches/3.3/mondo/src/common/libmondo-devices.c

    r3888 r3889  
    17641764
    17651765/**
    1766  * Return the type of boot of the system (UEFI, EFI or BIOS)
     1766 * Return the type of boot of the system (UEFI or BIOS)
    17671767 */
    17681768t_boot mr_boot_type(void) {
  • branches/3.3/mondo/src/common/libmondo-tools.c

    r3888 r3889  
    687687    if (!run_program_and_log_output("mount | grep -Ew 'vfat|fat|dos' | grep -vE \"/dev/fd|nexdisk\"", 0)) {
    688688        if (!run_program_and_log_output("mount | grep -Ew 'vfat|fat|dos' | grep -Ew efi", 0)) {
    689             log_to_screen("I think you have a EFI/UEFI partition.");
     689            log_to_screen("I think you have a UEFI partition.");
    690690        } else {
    691691            log_to_screen("I think you have a Windows 9x partition.");
  • branches/3.3/mondo/src/common/mondostructures.h

    r3888 r3889  
    184184typedef enum {
    185185    BIOS,                       /// System uses Legacy Boot mode (aka BIOS)
    186     EFI,                        /// System uses EFI Boot mode
    187186    UEFI,                       /// System uses UEFI Boot mode
    188187} t_boot;
  • branches/3.3/mondo/src/mondorestore/mondo-rstr-tools.c

    r3885 r3889  
    11341134if (!strcmp(value, "BIOS")) {
    11351135    bkpinfo->boot_type = BIOS;
    1136 } else if (!strcmp(value, "EFI")) {
    1137     bkpinfo->boot_type = EFI;
    11381136} else if (!strcmp(value, "UEFI")) {
    11391137    bkpinfo->boot_type = UEFI;
Note: See TracChangeset for help on using the changeset viewer.