Changeset 1529 in MondoRescue for branches/stable/mondo


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
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/ChangeLog

    r1500 r1529  
    33MONDO CHANGES
    44
    5 2.2.4 (2007-06-09)
     52.2.4 (2007-07-06)
     6- Size of DVD is 4482 (or more surely 4480 to avoid problems - used everywhere) (Bruno Cornec)
     7- New Hardware migration guide with P2V (Eric Montaut/Gallig/Renaud/Bruno Cornec)
     8- Fix a memory allocation bug where strings were freed to early (Nick Hajek)
     9- yum support added to ftp server (Mark Nienberg/Bruno Cornec)
     10- Also computes number of media for NFS backups (Patrick Albert/Bruno Cornec)
     11- Improve message around ISO directory (Patrick Albert/Bryan Gartner)
    612- Improved Ubuntu support (Fix #159) (Bruno Cornec)
    713- Improved VMWare ESX supoprt (Amaury Tanquerel/Bruno Cornec)
  • branches/stable/mondo/distributions/conf/mondo.conf.dist

    r1434 r1529  
    4343# Use 4380 for DVDs, 650 or 700 for CDs
    4444#
    45 mondo_media_size=4380
     45mondo_media_size=4480
    4646
    4747#
  • branches/stable/mondo/distributions/gentoo/mondo.ebuild

    r1513 r1529  
    1313LICENSE="GPL-2"
    1414SLOT="0"
    15 KEYWORDS="-* ~x86"
     15KEYWORDS="x86 ia64 -*"
    1616IUSE=""
    1717
  • 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.