summaryrefslogtreecommitdiffstats
path: root/copyright
blob: 10158f1e29145759b8cdc30e92efe6cc7eb942b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
Upstream Source
===============

archival/ar.c, archival/cpio.c, archival/dpkg_deb.c,
archival/libarchive/common.c, archival/libarchive/data_align.c,
archival/libarchive/data_extract_all.c,
archival/libarchive/data_extract_to_command.c,
archival/libarchive/data_extract_to_stdout.c, archival/libarchive/data_skip.c,
archival/libarchive/decompress_bunzip2.c,
archival/libarchive/filter_accept_all.c,
archival/libarchive/filter_accept_list.c,
archival/libarchive/filter_accept_list_reassign.c,
archival/libarchive/filter_accept_reject_list.c,
archival/libarchive/find_list_entry.c, archival/libarchive/get_header_ar.c,
archival/libarchive/get_header_cpio.c, archival/libarchive/get_header_tar.c,
archival/libarchive/get_header_tar_bz2.c,
archival/libarchive/get_header_tar_gz.c,
archival/libarchive/get_header_tar_xz.c, archival/libarchive/header_list.c,
archival/libarchive/header_skip.c, archival/libarchive/header_verbose_list.c,
archival/libarchive/init_handle.c, archival/libarchive/open_transformer.c,
archival/libarchive/seek_by_jump.c, archival/libarchive/seek_by_read.c,
archival/libarchive/unpack_ar_archive.c, archival/libarchive/unsafe_prefix.c,
archival/libarchive/unsafe_symlink_target.c, archival/rpm.c, archival/rpm.h,
archival/unzip.c, console-tools/chvt.c, console-tools/clear.c,
console-tools/deallocvt.c, console-tools/dumpkmap.c, console-tools/fgconsole.c,
console-tools/loadkmap.c, console-tools/openvt.c, console-tools/reset.c,
console-tools/resize.c, console-tools/setconsole.c, console-tools/setkeycodes.c,
console-tools/setlogcons.c, coreutils/basename.c, coreutils/chgrp.c,
coreutils/chmod.c, coreutils/chown.c, coreutils/chroot.c, coreutils/cksum.c,
coreutils/comm.c, coreutils/cp.c, coreutils/cut.c, coreutils/date.c,
coreutils/dd.c, coreutils/df.c, coreutils/dirname.c, coreutils/dos2unix.c,
coreutils/du.c, coreutils/expand.c, coreutils/expr.c, coreutils/false.c,
coreutils/fold.c, coreutils/head.c, coreutils/hostid.c, coreutils/id.c,
coreutils/install.c, coreutils/libcoreutils/coreutils.h, coreutils/ln.c,
coreutils/logname.c, coreutils/ls.c, coreutils/md5_sha1_sum.c,
coreutils/mkdir.c, coreutils/mkfifo.c, coreutils/mknod.c, coreutils/mktemp.c,
coreutils/mv.c, coreutils/nice.c, coreutils/nohup.c, coreutils/paste.c,
coreutils/printenv.c, coreutils/printf.c, coreutils/pwd.c, coreutils/readlink.c,
coreutils/realpath.c, coreutils/rm.c, coreutils/rmdir.c, coreutils/shuf.c,
coreutils/sleep.c, coreutils/sort.c, coreutils/split.c, coreutils/stat.c,
coreutils/stty.c, coreutils/sum.c, coreutils/sync.c, coreutils/tail.c,
coreutils/tee.c, coreutils/touch.c, coreutils/true.c, coreutils/truncate.c,
coreutils/tty.c, coreutils/uname.c, coreutils/uniq.c, coreutils/usleep.c,
coreutils/uudecode.c, coreutils/uuencode.c, coreutils/wc.c, coreutils/whoami.c,
coreutils/yes.c, debianutils/pipe_progress.c, debianutils/start_stop_daemon.c,
debianutils/which.c, editors/awk.c, editors/cmp.c, editors/diff.c,
editors/patch_bbox.c, editors/vi.c, findutils/grep.c, findutils/xargs.c,
include/applet_metadata.h, include/ar.h, include/busybox.h, include/platform.h,
include/rtc_.h, init/bootchartd.c, init/init.c, libbb/ask_confirmation.c,
libbb/bb_askpass.c, libbb/bb_pwd.c, libbb/bb_strtod.c, libbb/bb_strtonum.c,
libbb/bbunit.c, libbb/capability.c, libbb/compare_string_array.c,
libbb/concat_subpath_file.c, libbb/copy_file.c, libbb/copyfd.c,
libbb/default_error_retval.c, libbb/device_open.c, libbb/die_if_bad_username.c,
libbb/executable.c, libbb/fclose_nonstdin.c, libbb/fflush_stdout_and_exit.c,
libbb/find_mount_point.c, libbb/find_pid_by_name.c, libbb/find_root_device.c,
libbb/full_write.c, libbb/get_last_path_component.c, libbb/get_line_from_file.c,
libbb/getopt32.c, libbb/getopt_allopts.c, libbb/getpty.c, libbb/herror_msg.c,
libbb/kernel_version.c, libbb/last_char_is.c, libbb/llist.c, libbb/logenv.c,
libbb/login.c, libbb/loop.c, libbb/make_directory.c, libbb/match_fstype.c,
libbb/messages.c, libbb/mode_string.c, libbb/mtab.c, libbb/obscure.c,
libbb/parse_config.c, libbb/parse_mode.c, libbb/perror_msg.c,
libbb/perror_nomsg.c, libbb/perror_nomsg_and_die.c, libbb/pidfile.c,
libbb/print_flags.c, libbb/process_escape_sequence.c, libbb/procps.c,
libbb/pw_encrypt.c, libbb/read.c, libbb/read_printf.c, libbb/recursive_action.c,
libbb/remove_file.c, libbb/replace.c, libbb/safe_gethostname.c,
libbb/safe_strncpy.c, libbb/safe_write.c, libbb/simplify_path.c,
libbb/skip_whitespace.c, libbb/speed_table.c, libbb/str_tolower.c,
libbb/strrstr.c, libbb/sysconf.c, libbb/u_signal_names.c, libbb/uuencode.c,
libbb/verror_msg.c, libbb/vfork_daemon_rexec.c, libbb/warn_ignoring_args.c,
libbb/wfopen.c, libbb/wfopen_input.c, libbb/write.c, libbb/xgethostbyname.c,
libpwdgrp/pwd_grp.c, loginutils/addgroup.c, loginutils/adduser.c,
loginutils/chpasswd.c, loginutils/getty.c, loginutils/login.c,
loginutils/passwd.c, loginutils/su.c, loginutils/sulogin.c, loginutils/vlock.c,
miscutils/adjtimex.c, miscutils/beep.c, miscutils/conspy.c, miscutils/crond.c,
miscutils/crontab.c, miscutils/dc.c, miscutils/devmem.c, miscutils/fbsplash.c,
miscutils/flash_eraseall.c, miscutils/less.c, miscutils/lsscsi.c,
miscutils/makedevs.c, miscutils/mt.c, miscutils/raidautorun.c,
miscutils/readahead.c, miscutils/rfkill.c, miscutils/runlevel.c, miscutils/rx.c,
miscutils/setserial.c, miscutils/strings.c, miscutils/watchdog.c,
modutils/depmod.c, modutils/insmod.c, modutils/lsmod.c, modutils/modinfo.c,
modutils/modprobe.c, modutils/modutils.c, modutils/modutils.h, modutils/rmmod.c,
networking/arping.c, networking/dnsd.c, networking/ftpgetput.c,
networking/hostname.c, networking/httpd.c, networking/ifconfig.c,
networking/ifplugd.c, networking/ifupdown.c, networking/interface.c,
networking/ip.c, networking/ipcalc.c, networking/libiproute/ipaddress.c,
networking/libiproute/iplink.c, networking/libiproute/ipneigh.c,
networking/libiproute/iproute.c, networking/libiproute/iptunnel.c,
networking/libiproute/utils.c, networking/nameif.c, networking/nc.c,
networking/netstat.c, networking/parse_pasv_epsv.c, networking/pscan.c,
networking/route.c, networking/slattach.c, networking/tc.c, networking/telnet.c,
networking/telnetd.c, networking/udhcp/common.h, networking/udhcp/dumpleases.c,
networking/vconfig.c, networking/whois.c, networking/zcip.c, procps/kill.c,
procps/pgrep.c, procps/sysctl.c, procps/watch.c, sysklogd/klogd.c,
sysklogd/logread.c, sysklogd/syslogd.c, util-linux/blkdiscard.c,
util-linux/chrt.c, util-linux/eject.c, util-linux/fdisk.c, util-linux/fstrim.c,
util-linux/getopt.c, util-linux/hwclock.c, util-linux/ionice.c,
util-linux/ipcrm.c, util-linux/ipcs.c, util-linux/last_fancy.c,
util-linux/losetup.c, util-linux/lspci.c, util-linux/lsusb.c, util-linux/mesg.c,
util-linux/more.c, util-linux/nsenter.c, util-linux/rdate.c,
util-linux/readprofile.c, util-linux/renice.c, util-linux/scriptreplay.c,
util-linux/setarch.c, util-linux/setpriv.c, util-linux/taskset.c,
util-linux/unshare.c, util-linux/wall.c
--------------------------------------------------------------------------------

Copyright (C) 86, 1989-2006 Free Software Foundation, Inc.
Copyright 1991-1997 Miquel van Smoorenburg.
Copyright (C) 1992  A. V. Le Blanc (LeBlanc@mcc.ac.uk)
Copyright 1993 MicroWalt Corporation
Copyright (C) 1994-1998 Andries E. Brouwer <aeb@cwi.nl>
Copyright 1994 Matthew Dillon (dillon@apollo.west.oic.com)
Copyright (C) 1994-2000 by Tomi Ollila
Copyright (C) 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
Copyright 1997, 2000, 2001 Larry Doolittle
Copyright (c) 1997, 1998, 1999, 2000  Frodo Looijaard <frodol@dds.nl>
Copyright 1998 by Albert Cahalan; all rights reserved.
Copyright (C) 1998  Dave Cinege
Copyright (C) 1998, 1999  Charles P. Wright
Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
Copyright (C) 1999,2000,2001 by Lineo, inc.
Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Copyright 1999 George Staikos
Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
Copyright (C) 2000 Arcom Control System Ltd
(C) Copyright 2000, Axis Communications AB, LUND, SWEDEN
Copyright (C) 2000, Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
Copyright (c) 2000, 2002  Edward Betts <edward@debian.org>
Copyright (C) 2000 by Randolph Chung <tausq@debian.org>
Copyright (C) 2000-2001 by Gennady Feldman <gfeldman@gena01.com>
Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
Copyright (C) 2000 by Daniel Jacobowitz
Copyright (C) 2000-2002 Matt Kraai <kraai@alumni.carnegiemellon.edu>
Copyright (C) 2000-2003 Glenn McGrath
Copyright (C) 2000 by spoon <spoon@ix.netcom.com>
Copyright (C) 2001,2002 by Laurence Anderson
Copyright (C) 2001 by Michael Habermann <mhabermann@gmx.de>
Copyright (C) 2001 Hewlett-Packard Laboratories
Copyright (C) 2001-2003, 2005  Manuel Novoa III  <mjn3@codepoet.org>
Copyright (C) 2001-2006 Vladimir Oleynik <dzo@simtreas.ru>
Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com>
Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
Copyright 2002 Andi Kleen, SuSE Labs.
Copyright (C) 2002 by Bart Visscher <magick@linux-fan.com>
Copyright (C) 2002 by Dmitry Zakharov <dmit@crp.bank.gov.ua>
Copyright (C) 2003 Bastian Blank <waldi@tuxbox.org>
Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu>
Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess
Copyright (C) 2004-2006 Rob Landley <rob@landley.net>
Copyright (C) 2003  Paul Mundt <lethal@linux-sh.org>
Copyright (C) 2003, 2005-2008, 2014 Tito Ragusa <farmatito@tiscali.it>
Copyright (C) 2003 Paul Sheer
Copyright (C) 2004,2005  Enrik Berkhan <Enrik.Berkhan@inka.de>
Copyright (C) 2004 by David Brownell
Copyright (C) 2004 by Ed Clark
Copyright (C) 2004  Peter Willis <psyphreak@phreaker.net>
Copyright (C) 2005 Roberto A. Foglietta (me@roberto.foglietta.name)
Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
Copyright (C) 2005 Odd Arild Olsen (oao at fibula dot no)
Copyright (C) 2005-2009 Bernhard Reutner-Fischer
Copyright (C) 2005-2006 by Robert Sullivan
Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms
Copyright (C) 2006 by Jan Kiszka <jan.kiszka@web.de>
Copyright (C) 2006  Michael Opdenacker <michael@free-electrons.com>
Copyright (C) 2006 by Yoshinori Sato <ysato@users.sourceforge.jp>
Copyright (C) 2006 Gabriel Somlo <somlo at cmu.edu>
Copyright (C) 2007 by Stephane Billiart <stephane.billiart@gmail.com>
Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
(c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>
Copyright (C) 2008  Darius Augulis <augulis.darius@gmail.com>
Copyright (c) 2008 Pascal Bellard
Copyright (C) 2008, BusyBox Team. -solar 4/26/08
Copyright (C) 2008 Natanael Copa <natanael.copa@gmail.com>
Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
Copyright (C) 2008 by Patricia Muscalu <patricia.muscalu@axis.com>
Copyright (C) 2008, 2010 Nokia Corporation. All rights reserved.
Copyright (C) 2008 Michele Sanges <michele.sanges@gmail.com>
Copyright (C) 2008 by  <u173034@informatik.uni-oldenburg.de>
Copyright (C) 2009-2010  Malek Degachi <malek-degachi@laposte.net>
Copyright (C) 2009 Maksym Kryzhanovskyy <xmaks@email.cz>
Copyright (C) 2010 by Grigory Batalov <bga@altlinux.org>
Copyright (C) 2010, 2017-2018 Denys Vlasenko
Copyright (C) 2011 Marek Bečka <yuen@klacno.sk>
Copyright (c) 2011 Pere Orga <gotrunks@gmail.com>
Copyright (C) 2014, 2016 by Bartosz Golaszewski <bartekgola@gmail.com>
Copyright (C) 2014 by Fugro Intersite B.V. <m.stam@fugro.nl>
Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com>
Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com> and Tuxera Inc.
Copyright (C) 2017 by  <assafgordon@gmail.com>
Copyright (C) 2017 Markus Gothe <nietzsche@lysator.liu.se>
Copyright (C) Arne Bernin <arne@matrix.loopback.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/dpkg.c
---------------

copyright (c) 2001 by glenn mcgrath

parts of the version comparison code is plucked from the real dpkg
application which is licensed GPLv2 and
copyright (c) 1995 Ian Jackson <ian@chiark.greenend.org.uk>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/gzip.c, archival/libarchive/decompress_gunzip.c
--------------------------------------------------------

Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.

Copyright (C) 1992-1993 Jean-loup Gailly
This is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License, see the file COPYING.

The unzip code was written and put in the public domain by Mark Adler.
Portions of the lzw code are derived from the public domain 'compress'
written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
Ken Turkowski, Dave Mack and Peter Jannesen.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/decompress_unlzma.c
---------------------------------------

Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>

Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
Copyright (C) 1999-2005  Igor Pavlov

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/tar.c
--------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Based in part in the tar implementation in sash
 Copyright (c) 1999 by David I. Bell
 Permission is granted to use, distribute, or modify this source,
 provided that this copyright notice remains intact.
 Permission to distribute sash derived code under GPL has been granted.

Based in part on the tar implementation from busybox-0.28
 Copyright (C) 1995 Bruce Perens

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/kbd_mode.c
------------------------

Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
  written using Andries Brouwer <aeb@cwi.nl>'s kbd_mode from
  console-utils v0.2.3, licensed under GNU GPLv2

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/echo.c
----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1991, 1993
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>

     California, Berkeley and its contributors.
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/env.c
---------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1988, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
   ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/od.c
--------------

Based on code from util-linux v 2.11l

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1990 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/test.c
----------------

Copyright (c) by a whole pile of folks:

    test(1); version 7-like  --  author Erik Baalbergen
    modified by Eric Gisin to be used as built-in.
    modified by Arnold Robbins to add SVR3 compatibility
    (-x -c -b -p -u -g -k) plus Korn's -L -nt -ot -ef and new -S (socket).
    modified by J.T. Conklin for NetBSD.
    modified by Herbert Xu to be used as built-in in ash.
    modified by Erik Andersen <andersen@codepoet.org> to be used
    in busybox.
    modified by Bernhard Reutner-Fischer to be useable (i.e. a bit less bloaty).

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Original copyright notice states:
    "This program is in the Public Domain."

coreutils/tr.c
--------------

Copyright (c) 1987,1997, Prentice Hall   All rights reserved.

The name of Prentice Hall may not be used to endorse or promote
products derived from this software without specific prior
written permission.

Copyright (c) Michiel Huisjes

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/who.c
---------------

This is a free document; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation:
   http://www.gnu.org/copyleft/gpl.html

Copyright (c) 2002 AYR Networks, Inc.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

debianutils/run_parts.c
-----------------------

Copyright (C) 2007 Bernhard Reutner-Fischer

Based on a older version that was in busybox which was 1k big.
  Copyright (C) 2001 by Emanuele Aina <emanuele.aina@tiscali.it>

Based on the Debian run-parts program, version 1.15
  Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
  Copyright (C) 1996-1999 Guy Maor <maor@debian.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

include/xregex.h, libbb/isdirectory.c
-------------------------------------

Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Permission has been granted to redistribute this code under GPL.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/appletlib.c
-----------------

Copyright (C) tons of folks.  Tracking down who wrote what
isn't something I'm going to worry about...  If you wrote something
here, please feel free to acknowledge your work.

Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Permission has been granted to redistribute this code under GPL.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/chomp.c, libbb/concat_path_file.c, libbb/fgets_str.c,
libbb/get_console.c, libbb/inode_hash.c, libbb/trim.c, libbb/xregcomp.c
-----------------------------------------------------------------------

Copyright (C) many different people.
If you wrote this, please acknowledge your work.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/dump.c
------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Original copyright notice is retained at the end of this file.

Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/bc.c
--------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.
Adapted from https://github.com/gavinhoward/bc
Original code copyright (c) 2018 Gavin D. Howard and contributors.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/devfsd.c
------------------

    Copyright (C) 2003 by Tito Ragusa <farmatito@tiscali.it>

    Busybox version is based on some previous work and ideas
    Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>

Copyright (C) 1997-2002  Richard Gooch

    This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/hdparm.c
------------------

Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This program is based on the source code of hdparm: see below...
         - by Mark Lord (C) 1994-2002 -- freely distributable

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/i2c_tools.c
---------------------

Parts of code ported from i2c-tools:
             http://www.lm-sensors.org/wiki/I2CTools.

Copyright (C) 2014 by Bartosz Golaszewski <bartekgola@gmail.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

modutils/modutils-24.c
----------------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
and Ron Alder <alder@lineo.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright 1996, 1997 Linux International.

This file is part of the Linux modutils.

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/brctl.c
------------------

Copyright (C) 2008 by Bernhard Reutner-Fischer

Some helper functions from bridge-utils are
Copyright (C) 2000 Lennert Buytenhek

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ether-wake.c
-----------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This software may be used and distributed according to the terms
of the GNU Public License, incorporated herein by reference.
Contact the author for use under other terms.

This source file was originally part of the network tricks package, and
is now distributed to support the Scyld Beowulf system.
Copyright 1999-2003 Donald Becker and Scyld Computing Corporation.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/nslookup.c
---------------------

Copyright (C) 1999,2000 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

musl compatible nslookup

Copyright (C) 2017 Jo-Philipp Wich <jo@mein.io>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ping.c
-----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (C) 1999 by Randolph Chung <tausq@debian.org>

This version of ping is adapted from the ping in netkit-base 0.10,
which is:

Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tftp.c
-----------------

Copyright (C) 2001 Magnus Damm <damm@opensource.se>

Parts of the code based on:

atftp:  Copyright (C) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca>
                       and Remi Lefebvre <remi@debian.org>

utftp:  Copyright (C) 1999 Uwe Ohse <uwe@ohse.de>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/domain_codec.c
-------------------------------

RFC1035 domain compression routines (C) 2007 Gabriel Somlo <somlo at cmu.edu>

Loosely based on the isc-dhcpd implementation by dhankins@isc.org

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/ash.c
-----------

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

The let builtin. Partially stolen from GNU Bash, the Bourne Again SHell.
Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/hush.c
------------

Copyright (C) 2000,2001  Larry Doolittle <larry@doolittle.boa.org>
Copyright (C) 2008,2009  Denys Vlasenko <vda.linux@googlemail.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Credits:
     The parser routines proper are all original material, first
     written Dec 2000 and Jan 2001 by Larry Doolittle.  The
     execution engine, the builtins, and much of the underlying
     support has been adapted from busybox-0.49pre's lash, which is
     Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
     written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
     is based in part on ladsh.c, by Michael K. Johnson and Erik W.
     Troan, which they placed in the public domain.  I don't know
     how much of the Johnson/Troan code has survived the repeated
     rewrites.

Other credits:
     o_addchr derived from similar w_addchar function in glibc-2.2.
     parse_redirect, redirect_opt_num, and big chunks of main
     and many builtins derived from contributions by Erik Andersen.
     Miscellaneous bugfixes from Matt Kraai.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/match.c
-------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>

shell/math.c
------------

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>

rewrite arith.y to micro stack based cryptic algorithm by
Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>

Modified by Paul Mundt <lethal@linux-sh.org> (c) 2004 to support
dynamic variables.

Modified by Vladimir Oleynik <dzo@simtreas.ru> (c) 2001-2005 to be
used in busybox and size optimizations,
rewrote arith (see notes to this), added locale support,
rewrote dynamic variables.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/shell_common.c, shell/shell_common.h
------------------------------------------

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>

Copyright (c) 2010 Denys Vlasenko

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

sysklogd/logger.c
-----------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1983, 1993
The Regents of the University of California.  All rights reserved.

This is the original license statement for the decode and pencode functions.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
   ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/cal.c
----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1989, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fbset.c
------------------

Copyright (C) 1999 by Randolph Chung <tausq@debian.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This is a from-scratch implementation of fbset; but the de facto fbset
implementation was a good reference. fbset (original) is released under
the GPL, and is (c) 1995-1999 by:
    Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/findfs.c
-------------------

Support functions for mounting devices by label/uuid

Copyright (C) 2006 by Jason Schoon <floydpink@gmail.com>
Some portions cribbed from e2fsprogs, util-linux, dosfstools

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/hexdump.c
--------------------

Based on code from util-linux v 2.11l

Copyright (c) 1989
The Regents of the University of California.  All rights reserved.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mountpoint.c
-----------------------

Copyright (C) 2005 Bernhard Reutner-Fischer

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Based on sysvinit's mountpoint

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/script.c
-------------------

Based on code from util-linux v 2.12r
Copyright (c) 1980
The Regents of the University of California.  All rights reserved.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/volume_id/get_devname.c
----------------------------------

Copyright (C) 2006 by Jason Schoon <floydpink@gmail.com>
Some portions cribbed from e2fsprogs, util-linux, dosfstools

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.