Changeset 3626 in MondoRescue


Ignore:
Timestamp:
Dec 21, 2016, 2:52:24 AM (7 years ago)
Author:
Bruno Cornec
Message:

Adds fixes for rhel4 to busybox 1.25

Location:
branches/3.3/mindi-busybox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/.config

    r3625 r3626  
    11#
    22# Automatically generated make config: don't edit
    3 # Busybox version: 1.25.1
    4 # Wed Dec 21 02:36:30 2016
     3# Busybox version: 1.25.1-rPBREV
     4# Wed Dec 21 02:50:48 2016
    55#
    66CONFIG_HAVE_DOT_CONFIG=y
     
    581581# CONFIG_SETARCH is not set
    582582CONFIG_UEVENT=y
    583 CONFIG_UNSHARE=y
     583# CONFIG_UNSHARE is not set
    584584CONFIG_ACPID=y
    585585CONFIG_FEATURE_ACPID_COMPAT=y
  • branches/3.3/mindi-busybox/networking/udhcp/dhcpc.c

    r3621 r3626  
    2727
    2828#include <netinet/if_ether.h>
     29// BCO for RHEL4
     30#include <linux/types.h>
     31// BCO
    2932#include <linux/filter.h>
    3033#include <linux/if_packet.h>
  • branches/3.3/mindi-busybox/util-linux/uevent.c

    r3621 r3626  
    2727#include "libbb.h"
    2828#include "common_bufsiz.h"
     29// BCO for RHEL4
     30#include <linux/types.h>
     31#ifndef NETLINK_KOBJECT_UEVENT
     32#define NETLINK_KOBJECT_UEVENT     15      /* Kernel messages to userspace */
     33#endif
     34// BCO
    2935#include <linux/netlink.h>
    3036
Note: See TracChangeset for help on using the changeset viewer.