Changeset 3889 in MondoRescue for branches


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

Remove EFI references for ia64

Location:
branches/3.3
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/contrib/mkcd/setup

    r3653 r3889  
    296296GetDistroArchitecture() {
    297297    local arch
    298     for arch in x86_64 x86-64 amd64 opteron ia64 ; do
     298    for arch in x86_64 x86-64 amd64 opteron ; do
    299299    if grep -i "$arch" /etc/issue.net &> /dev/null ; then
    300300#       [ "$arch" = "x86_64" ] && arch=amd64; # hack - FIXME
    301301        echo $arch
    302         return 0
    303     fi
    304     done
    305 
    306     for arch in itanium ; do
    307     if grep -i "$arch" /etc/issue.net &> /dev/null ; then
    308         echo itan
    309302        return 0
    310303    fi
  • branches/3.3/mindi/mindi

    r3888 r3889  
    21982198                    mount /boot/efi
    21992199                    if [ $? -ne 0 ]; then
    2200                         echo "ERROR: You have to mount your (U)EFI partition when using mindi"
     2200                        echo "ERROR: You have to mount your UEFI partition when using mindi"
    22012201                        MindiExit -1
    22022202                    fi
  • 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.