Changeset 1529 in MondoRescue for branches/stable/mondo/src


Ignore:
Timestamp:
Jul 6, 2007, 2:28:03 PM (17 years ago)
Author:
Bruno Cornec
Message:
  • ChangeLogs updated for upcoming 2.2.4
  • Attempt to fix #177 by removing first headers and repodata directory before regenerating them.
  • Fix a problem in directory link handling in mindi (seen on gentoo 64) with the precious help of Francesco Talamona ti.liame_at_email.it
  • Gentoo ebuild are now unmasked on my side
  • usb-storage instead of usb_storage as a module name for Virtual CD support seems better
  • Document support for Proliant Virtual Media with mindi
  • Mandriva packages go first to contrib/testing not backport
  • Size of DVD is 4482 (or more surely 4480 to avoid problems). Fixed everywhere.
  • Fix a bug in Mandriva official package creation

(merge -r1519:1528 $SVN_M/branches/2.2.4)

Location:
branches/stable/mondo/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/common/libmondo-devices.c

    r1514 r1529  
    14941494                find_dvd_device(bkpinfo->media_device, FALSE);
    14951495                mr_asprintf(&tmp, "1");
    1496                 mr_asprintf(&sz_size, "%d", DEFAULT_DVD_DISK_SIZE); // 4.7 salesman's GB = 4.482 real GB = 4582 MB
     1496                mr_asprintf(&sz_size, "%d", DEFAULT_DVD_DISK_SIZE); // 4.7 salesman's GB = 4.482 real GB = 4482 MB
    14971497                mr_msg(1, "Setting to DVD defaults");
    14981498            } else if (bkpinfo->backup_media_type == usb) {
  • branches/stable/mondo/src/include/my-stuff.h

    r1458 r1529  
    337337#define log_it(format, args...) mr_msg(2, format, ## args)
    338338
    339 #define DEFAULT_DVD_DISK_SIZE 4380  ///< The default size (in MB) of a DVD disk, unless the user says otherwise.
     339#define DEFAULT_DVD_DISK_SIZE 4480  ///< The default size (in MB) of a DVD disk, unless the user says otherwise.
    340340
    341341#define DEFAULT_DEBUG_LEVEL 4   ///< By default, don't log messages with a loglevel higher than this.
  • branches/stable/mondo/src/mondoarchive/mondo-cli.c

    r1434 r1529  
    432432        }
    433433        if (!flag_set['s']) {
    434             sprintf(flag_val['s'], "%d", DEFAULT_DVD_DISK_SIZE);    // 4.7 salesman's GB = 4.482 real GB = 4582 MB
     434            sprintf(flag_val['s'], "%d", DEFAULT_DVD_DISK_SIZE);    // 4.7 salesman's GB = 4.482 real GB = 4482 MB
    435435            strcat(flag_val['s'], "m");
    436436            log_to_screen
Note: See TracChangeset for help on using the changeset viewer.