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


Ignore:
Timestamp:
Apr 30, 2007, 11:25:39 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • ARCH removed from configure.in as useless
  • addition of get_uname_m (to give the underlying arch)
  • get_architecture now returns correctly the built arch used (including x86_64)
  • IA32 is defined for both i386 and x86_64. An additional vdefine X86_64 is also setup for tha later arch.
Location:
branches/stable/mondo/src
Files:
3 edited

Legend:

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

    r1373 r1377  
    2323#include <netinet/in.h>
    2424#include <arpa/inet.h>
     25#include <sys/utsname.h>
    2526
    2627/*@unused@*/
     
    192193
    193194
    194 char *get_architecture(void)
    195 {
     195char *get_architecture(void) {
    196196#ifdef __IA32__
    197     return ("i386");
     197#   ifdef __X86_64__
     198        return ("x86_64");
     199#   else
     200        return ("i386");
     201#   endif
    198202#endif
    199203#ifdef __X86_64__
     
    205209    return ("unknown");
    206210}
     211
     212
     213char *get_uname_m(void) {
     214
     215    struct utsname utsn;
     216    char *tmp = NULL;
     217
     218    uname(&utsn);
     219    mr_asprintf(&tmp, utsn.machine);
     220    return (tmp);
     221}
     222
    207223
    208224
  • branches/stable/mondo/src/common/libmondo-tools.h

    r1183 r1377  
    4545double get_kernel_version(void);
    4646char *get_architecture(void);
     47char *get_uname_m();
    4748bool does_nonMS_partition_exist(void);
    4849void stop_magicdev_if_necessary(void);
  • branches/stable/mondo/src/mondoarchive/mondoarchive.c

    r1326 r1377  
    6666static void welcome_to_mondoarchive(void)
    6767{
     68    char *tmp = NULL;
     69
    6870    mr_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org", PACKAGE_VERSION);
    69     mr_msg(0, "running on %s architecture", get_architecture());
     71    log_msg(0, "running %s binaries", get_architecture());
     72    tmp = get_uname_m();
     73    log_msg(0, "running on %s architecture", tmp);
     74    mr_free(tmp);
    7075    mr_msg(0, "-----------------------------------------------------------");
    7176    mr_msg(0, "NB: Mondo logs almost everything, so don't panic if you see");
Note: See TracChangeset for help on using the changeset viewer.