Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/Kbuild

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 13  lib-y += bb_basename.o Line 13  lib-y += bb_basename.o
13  lib-y += bb_do_delay.o  lib-y += bb_do_delay.o
14  lib-y += bb_pwd.o  lib-y += bb_pwd.o
15  lib-y += bb_qsort.o  lib-y += bb_qsort.o
16  lib-y += bb_strtod.o  #lib-y += bb_strtod.o
17  lib-y += bb_strtonum.o  lib-y += bb_strtonum.o
18  lib-y += change_identity.o  lib-y += change_identity.o
19  lib-y += chomp.o  lib-y += chomp.o
# Line 58  lib-y += make_directory.o Line 58  lib-y += make_directory.o
58  lib-y += makedev.o  lib-y += makedev.o
59  lib-y += match_fstype.o  lib-y += match_fstype.o
60  lib-y += md5.o  lib-y += md5.o
61    # Alternative (disabled) implementation
62    #lib-y += md5prime.o
63  lib-y += messages.o  lib-y += messages.o
64  lib-y += mode_string.o  lib-y += mode_string.o
65  lib-y += mtab_file.o  lib-y += mtab_file.o
# Line 69  lib-y += perror_msg_and_die.o Line 71  lib-y += perror_msg_and_die.o
71  lib-y += perror_nomsg.o  lib-y += perror_nomsg.o
72  lib-y += perror_nomsg_and_die.o  lib-y += perror_nomsg_and_die.o
73  lib-y += pidfile.o  lib-y += pidfile.o
74    lib-y += platform.o
75  lib-y += printable.o  lib-y += printable.o
76  lib-y += print_flags.o  lib-y += print_flags.o
77  lib-y += process_escape_sequence.o  lib-y += process_escape_sequence.o
78  lib-y += procps.o  lib-y += procps.o
79    lib-y += progress.o
80  lib-y += ptr_to_globals.o  lib-y += ptr_to_globals.o
81  lib-y += read.o  lib-y += read.o
82  lib-y += read_key.o  lib-y += read_key.o
# Line 88  lib-y += setup_environment.o Line 92  lib-y += setup_environment.o
92  lib-y += sha1.o  lib-y += sha1.o
93  lib-y += signals.o  lib-y += signals.o
94  lib-y += simplify_path.o  lib-y += simplify_path.o
95    lib-y += single_argv.o
96  lib-y += skip_whitespace.o  lib-y += skip_whitespace.o
97  lib-y += speed_table.o  lib-y += speed_table.o
98  lib-y += str_tolower.o  lib-y += str_tolower.o
# Line 114  lib-y += xgethostbyname.o Line 119  lib-y += xgethostbyname.o
119  lib-y += xreadlink.o  lib-y += xreadlink.o
120  lib-y += xrealloc_vector.o  lib-y += xrealloc_vector.o
121    
122  # conditionally compiled objects:  # A mix of optimizations (why build stuff we know won't be used)
123  lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o  # and objects which may fail to build (SELinux on selinux-less system)
124  lib-$(CONFIG_LOSETUP) += loop.o  lib-$(CONFIG_SELINUX) += selinux_common.o
125  lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o  lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o
126  lib-$(CONFIG_PASSWD) += pw_encrypt.o crypt_make_salt.o update_passwd.o  lib-$(CONFIG_FEATURE_ASSUME_UNICODE) += unicode.o
127  lib-$(CONFIG_CHPASSWD) += pw_encrypt.o crypt_make_salt.o update_passwd.o  lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o
128  lib-$(CONFIG_CRYPTPW) += pw_encrypt.o crypt_make_salt.o  
129    lib-$(CONFIG_LOSETUP) += loop.o
130    lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o
131    
132    lib-$(CONFIG_ADDGROUP) += update_passwd.o
133    lib-$(CONFIG_ADDUSER) += update_passwd.o
134    lib-$(CONFIG_DELGROUP) += update_passwd.o
135    lib-$(CONFIG_DELUSER) += update_passwd.o
136    
137    lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o
138    lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o
139    lib-$(CONFIG_CRYPTPW) += pw_encrypt.o
140  lib-$(CONFIG_SULOGIN) += pw_encrypt.o  lib-$(CONFIG_SULOGIN) += pw_encrypt.o
 lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o  
141  lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o  lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o
142  lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o  lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o
143  lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o  lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o
144    lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
145    
146  lib-$(CONFIG_DF) += find_mount_point.o  lib-$(CONFIG_DF) += find_mount_point.o
147  lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o  lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
148  lib-$(CONFIG_SELINUX) += selinux_common.o  lib-$(CONFIG_MKFS_EXT2) += find_mount_point.o
149    lib-$(CONFIG_MKFS_REISER) += find_mount_point.o
150    lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o
151    lib-$(CONFIG_MOUNT) += find_mount_point.o
152    
153  lib-$(CONFIG_HWCLOCK) += rtc.o  lib-$(CONFIG_HWCLOCK) += rtc.o
154  lib-$(CONFIG_RTCWAKE) += rtc.o  lib-$(CONFIG_RTCWAKE) += rtc.o
 lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o  
155    
156  # We shouldn't build xregcomp.c if we don't need it - this ensures we don't  # We shouldn't build xregcomp.c if we don't need it - this ensures we don't
157  # require regex.h to be in the include dir even if we don't need it thereby  # require regex.h to be in the include dir even if we don't need it thereby

Legend:
Removed from v.983  
changed lines
  Added in v.984