Ignore:
Timestamp:
Jul 7, 2018, 9:10:03 AM (7 years ago)
Author:
Ben Rietbroek
Message:

The installer now recognizes the language-id for ES [v1.1.5-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.4-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/c/install.c

    r67 r238  
    10211021    // Note that the 'AiRCFG-TABLE' string includes the invisible 0xAD char.
    10221022    */
    1023     if (strncmp(ConfigSectorPtr, "AiRCFG-TABLE­", 13)==0) {
     1023    if (strncmp(ConfigSectorPtr, "AiRCFG-TABLE\xad", 13)==0) {
    10241024        // AiR-BOOT signature found...
    10251025        SectorPtr = &Track0[54 * BYTES_PER_SECTOR];                                // Start at sector 55
     
    13651365        case 'R': printf("russian");    break;
    13661366        case 'S': printf("swedish");    break;
     1367        case 0xa5: printf("spanish");   break;
    13671368        default:  printf("unknown");
    13681369    }
     
    17991800                if (Install_Code) {
    18001801                    if (!Option_CID) {
    1801                         printf(" þ Writing AiR-BOOT code...");
     1802                        printf(" \xfe Writing AiR-BOOT code...");
    18021803                    }
    18031804                    //~ DumpTrack0();
     
    18101811                if (Install_Config) {
    18111812                    if (!Option_CID) {
    1812                         printf(" þ Writing AiR-BOOT configuration...");
     1813                        printf(" \xfe Writing AiR-BOOT configuration...");
    18131814                    }
    18141815                    Install_WriteConfig();
     
    18631864            else {
    18641865                if (!Option_CID) {
    1865                     printf(" þ All components of AiR-BOOT are intact and up-to-date. Nothing to do.\n");
     1866                    printf(" \xfe All components of AiR-BOOT are intact and up-to-date. Nothing to do.\n");
    18661867                }
    18671868                ExitOnly = TRUE;
     
    18711872        case 'd': {
    18721873            if (!Option_CID) {
    1873                 printf(" þ Removing AiR-BOOT automatically is not possible at this time.\n");
     1874                printf(" \xfe Removing AiR-BOOT automatically is not possible at this time.\n");
    18741875            }
    18751876#ifdef PLATFORM_OS2
Note: See TracChangeset for help on using the changeset viewer.