Changeset 1765 in MondoRescue for branches/2.2.5/mindi-busybox/examples


Ignore:
Timestamp:
Nov 4, 2007, 3:16:40 AM (16 years ago)
Author:
Bruno Cornec
Message:

Update to busybox 1.7.2

Location:
branches/2.2.5/mindi-busybox/examples
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/examples/bootfloppy/bootfloppy.txt

    r821 r1765  
    7373
    7474    (chdir to busybox directory)
    75     make PREFIX=(path to)loop/ install
     75    make CONFIG_PREFIX=(path to)loop/ install
    7676
    7777 - Make device files in /dev:
  • branches/2.2.5/mindi-busybox/examples/bootfloppy/mkrootfs.sh

    r821 r1765  
    7777make distclean
    7878make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc
    79 make PREFIX=$BASE_DIR/$TARGET_DIR install
     79make CONFIG_PREFIX=$BASE_DIR/$TARGET_DIR install
    8080cd $BASE_DIR
    8181
  • branches/2.2.5/mindi-busybox/examples/busybox.spec

    r821 r1765  
    3535%Install
    3636rm -rf $RPM_BUILD_ROOT
    37 make PREFIX=$RPM_BUILD_ROOT install
     37make CONFIG_PREFIX=$RPM_BUILD_ROOT install
    3838
    3939%Clean
  • branches/2.2.5/mindi-busybox/examples/depmod.pl

    r821 r1765  
    11#!/usr/bin/perl -w
    2 # vi: set ts=4:
     2# vi: set sw=4 ts=4:
    33# Copyright (c) 2001 David Schleef <ds@schleef.org>
    44# Copyright (c) 2001 Erik Andersen <andersen@codepoet.org>
     
    2323my $kernel="";
    2424my $kernelsyms="";
     25my $symprefix="";
    2526my $stdout=0;
    2627my $verbose=0;
     
    3536
    3637my $usage = <<TXT;
    37 $0 -b basedir { -k <vmlinux> | -F <System.map> } [options]... 
     38$0 -b basedir { -k <vmlinux> | -F <System.map> } [options]...
    3839  Where:
    39    -h --help         : Show this help screen
    40    -b --basedir      : Modules base directory (e.g /lib/modules/<2.x.y>)
    41    -k --kernel       : Kernel binary for the target (e.g. vmlinux)
    42    -F --kernelsyms   : Kernel symbol file (e.g. System.map)
    43    -n --stdout       : Write to stdout instead of <basedir>/modules.dep
    44    -v --verbose      : Print out lots of debugging stuff
     40   -h --help          : Show this help screen
     41   -b --basedir       : Modules base directory (e.g /lib/modules/<2.x.y>)
     42   -k --kernel        : Kernel binary for the target (e.g. vmlinux)
     43   -F --kernelsyms    : Kernel symbol file (e.g. System.map)
     44   -n --stdout        : Write to stdout instead of <basedir>/modules.dep
     45   -v --verbose       : Print out lots of debugging stuff
     46   -P --symbol-prefix : Symbol prefix
    4547TXT
    4648
    4749# get command-line options
    4850GetOptions(
    49     "help|h"         => \$help,
    50     "basedir|b=s"    => \$basedir,
    51     "kernel|k=s"     => \$kernel,
    52     "kernelsyms|F=s" => \$kernelsyms,
    53     "stdout|n"       => \$stdout,
    54     "verbose|v"      => \$verbose,
     51    "help|h"            => \$help,
     52    "basedir|b=s"       => \$basedir,
     53    "kernel|k=s"        => \$kernel,
     54    "kernelsyms|F=s"    => \$kernelsyms,
     55    "stdout|n"          => \$stdout,
     56    "verbose|v"         => \$verbose,
     57    "symbol-prefix|P=s" => \$symprefix,
    5558);
    5659
     
    183186
    184187    # this takes makes sure modules with no dependencies get listed
    185     push @{$dep->{$name}}, 'printk' unless $name eq 'vmlinux';
     188    push @{$dep->{$name}}, $symprefix . 'printk' unless $name eq 'vmlinux';
    186189
    187190    # gather the unresolved symbols
     
    212215depmod.pl - a cross platform script to generate kernel module
    213216dependency lists (modules.conf) which can then be used by modprobe
    214 on the target platform. 
     217on the target platform.
    215218
    216219It supports Linux 2.4 and 2.6 styles of modules.conf (auto-detected)
     
    246249
    247250The base directory uner which the target's modules will be found.  This
    248 defaults to the /lib/modules directory. 
     251defaults to the /lib/modules directory.
    249252
    250253If you don't specify the kernel version, this script will search for
  • branches/2.2.5/mindi-busybox/examples/udhcp/udhcpd.conf

    r821 r1765  
    6868#notify_file                #default: (no script)
    6969
    70 #notify_file    dumpleases  # <--- usefull for debugging
     70#notify_file    dumpleases  # <--- useful for debugging
    7171
    7272# The following are bootp specific options, setable by udhcpd.
Note: See TracChangeset for help on using the changeset viewer.