ba1315d0fb
- a lot faster (linear algorithmic complexity, smaller memory foot print) - a lot smaller (the old code was overly complicated) - loading of aliases is now module-init-tools compliant - blacklisting is done correctly (-b option added) - module argument quoting done right - depmod now correctly generates modules.symbols and modules.alias add/remove: 16/21 grow/shrink: 4/6 up/down: 6930/-9316 Total: -2386 bytes text data bss dec hex filename 806039 592 6680 813311 c68ff busybox_old 803498 592 6676 810766 c5f0e busybox_unstripped
15 lines
560 B
Makefile
15 lines
560 B
Makefile
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
|
|
|
lib-y:=
|
|
lib-$(CONFIG_MODPROBE_SMALL) += modprobe-small.o
|
|
lib-$(CONFIG_DEPMOD) += depmod.o modutils.o
|
|
lib-$(CONFIG_INSMOD) += insmod.o modutils.o
|
|
lib-$(CONFIG_LSMOD) += lsmod.o modutils.o
|
|
lib-$(CONFIG_MODPROBE) += modprobe.o modutils.o
|
|
lib-$(CONFIG_RMMOD) += rmmod.o modutils.o
|
|
lib-$(CONFIG_FEATURE_2_4_MODULES) += modutils-24.o
|