summaryrefslogtreecommitdiffstats
path: root/copyright
blob: 73df3aa029d94e1f8adfa76860fe2933fd0c04e0 (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
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
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>.

applets/applet_tables.c, applets/applets.c, applets/individual.c,
applets/usage.c, applets/usage_pod.c, archival/libarchive/get_header_tar_lzma.c,
console-tools/loadfont.c, console-tools/showkey.c, coreutils/factor.c,
coreutils/link.c, coreutils/nl.c, coreutils/seq.c, coreutils/shred.c,
coreutils/tac.c, coreutils/test_ptr_hack.c, e2fsprogs/e2fs_lib.c,
e2fsprogs/fsck.c, e2fsprogs/tune2fs.c, editors/sed.c, findutils/find.c,
include/fix_u32.h, include/unicode.h, include/xatonum.h, init/halt.c,
klibc-utils/minips.c, klibc-utils/nuke.c, klibc-utils/resume.c,
klibc-utils/run-init.c, libbb/auto_string.c, libbb/bb_bswap_64.c,
libbb/bb_cat.c, libbb/bb_do_delay.c, libbb/bb_getgroups.c,
libbb/bb_getsockname.c, libbb/bb_qsort.c, libbb/common_bufsiz.c,
libbb/duration.c, libbb/endofname.c, libbb/get_cpu_count.c,
libbb/get_shell_name.c, libbb/get_volsize.c, libbb/human_readable.c,
libbb/inet_cksum.c, libbb/inet_common.c, libbb/isqrt.c,
libbb/lineedit_ptr_hack.c, libbb/makedev.c, libbb/missing_syscalls.c,
libbb/nuke_str.c, libbb/print_numbered_lines.c, libbb/printable.c,
libbb/printable_string.c, libbb/ptr_to_globals.c, libbb/read_key.c, libbb/rtc.c,
libbb/safe_poll.c, libbb/securetty.c, libbb/selinux_common.c, libbb/signals.c,
libbb/single_argv.c, libbb/time.c, libbb/ubi.c, libbb/udp_io.c, libbb/unicode.c,
libbb/update_passwd.c, libbb/utmp.c, libbb/xatonum.c, libbb/xatonum_template.c,
libbb/xconnect.c, libbb/xfunc_die.c, libbb/xfuncs.c, libbb/xfuncs_printf.c,
libbb/xgetcwd.c, libbb/xreadlink.c, libbb/xrealloc_vector.c,
loginutils/deluser.c, mailutils/mail.c, mailutils/mail.h, mailutils/makemime.c,
mailutils/popmaildir.c, mailutils/reformime.c, mailutils/sendmail.c,
miscutils/chat.c, miscutils/flash_lock_unlock.c, miscutils/flashcp.c,
miscutils/hexedit.c, miscutils/inotifyd.c, miscutils/man.c,
miscutils/microcom.c, miscutils/nandwrite.c, miscutils/partprobe.c,
miscutils/setfattr.c, miscutils/time.c, miscutils/ts.c, miscutils/ttysize.c,
miscutils/ubi_tools.c, miscutils/ubirename.c, modutils/modprobe-small.c,
networking/ftpd.c, networking/httpd_indexcgi.c, networking/httpd_ssi.c,
networking/isrv.c, networking/isrv.h, networking/isrv_identd.c,
networking/nbd-client.c, networking/ssl_client.c, networking/tls.c,
networking/tls.h, networking/tls_aes.h, networking/tls_aesgcm.c,
networking/tls_aesgcm.h, networking/tls_fe.h, networking/tls_rsa.c,
networking/tls_rsa.h, networking/udhcp/arpping.c, networking/udhcp/common.c,
networking/udhcp/d6_common.h, networking/udhcp/d6_packet.c,
networking/udhcp/d6_socket.c, networking/udhcp/dhcpc.h,
networking/udhcp/dhcpd.h, networking/udhcp/packet.c, printutils/lpd.c,
procps/free.c, procps/fuser.c, procps/iostat.c, procps/lsof.c, procps/mpstat.c,
procps/nmeter.c, procps/pidof.c, procps/ps.c, procps/top.c, procps/uptime.c,
selinux/chcon.c, selinux/getenforce.c, selinux/getsebool.c,
selinux/load_policy.c, selinux/matchpathcon.c, selinux/runcon.c,
selinux/selinuxenabled.c, selinux/sestatus.c, selinux/setenforce.c,
selinux/setsebool.c, shell/ash_ptr_hack.c, shell/cttyhack.c, shell/random.c,
shell/random.h, sysklogd/syslogd_and_logger.c, util-linux/acpid.c,
util-linux/blkid.c, util-linux/blockdev.c, util-linux/dmesg.c,
util-linux/fallocate.c, util-linux/fdformat.c, util-linux/fdisk_aix.c,
util-linux/fdisk_gpt.c, util-linux/fdisk_sun.c, util-linux/freeramdisk.c,
util-linux/fsfreeze.c, util-linux/hexdump_xxd.c, util-linux/last.c,
util-linux/mdev.c, util-linux/mkfs_ext2.c, util-linux/mkfs_minix.c,
util-linux/mkfs_reiser.c, util-linux/mkfs_vfat.c, util-linux/mkswap.c,
util-linux/pivot_root.c, util-linux/rdev.c, util-linux/rev.c,
util-linux/rtcwake.c, util-linux/swaponoff.c, util-linux/switch_root.c,
util-linux/uevent.c, util-linux/umount.c, util-linux/volume_id/f2fs.c,
util-linux/volume_id/lfs.c, util-linux/volume_id/squashfs.c,
util-linux/volume_id/ubifs.c
--------------------------------------------------------------------------------

Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc.
(C) 1991 Linus Torvalds.
Copyright (c) 1992 Roger Binns
Copyright (C) 1992-1998 Michael K. Johnson
Copyright (c) 1992 Branko Lankester
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
     2001, 2002, 2003, 2004, 2005 by  Theodore Ts'o.
Copyright (C) 1994-1996 Charles L. Blake.
Copyright (C) Andreas Neuper, Sep 1998.
Copyright (C) 1999-2004 by Erik Andersen <andersen@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 (C) 1999 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it>
Copyright (C) 2002  Matt Kraai
Vladimir Oleynik (C) 2002 <dzo@simtreas.ru>
Copyright (C) 2003-2006, 2008, 2010 by Rob Landley <rob@landley.net>
Copyright (C) 2003-2004 by Glenn McGrath
Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
Copyright (C) 2003  Yang Xiaopeng  <yxp at hanwang.com.cn>
Copyright 2004 Tony J. White
Copyright (C) 2005, 2007 by Tito Ragusa <tito-wolit@tiscali.it>
Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>
Copyright (C) 2006 - 2007 KaiGai Kohei <kaigai@kaigai.gr.jp>
Copyright (c) 2006, 2008 Bernhard Reutner-Fischer <rep.nop@aon.at>
Copyright (C) 2006-2019 Denys Vlasenko <vda.linux@googlemail.com>
Copyright (C) 2007  Natanael Copa  <natanael.copa@gmail.com>
(c)2007 Yuichi Nakamura <ynakam@hitachisoft.jp>
(c)2007 Hiroshi Shinji <shiroshi@my.email.ne.jp>
Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
Copyright (c) 2008 Nuovation System Designs, LLC
  Grant Erickson <gerickson@nuovations.com>
(C) 2009 Stefan Seyfried <seife@sphairon.com>
Copyright (C) 2010 Kevin Cernekee <cernekee@gmail.com>
Copyright (C) 2010 Sergey Naumov <sknaumov@gmail.com>
Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>
Copyright (C) 2012 S-G Bergh <sgb@systemasis.org>
Copyright (C) 2012 by Sven Oliver 'SvOlli' Moll <svolli@svolli.de>
Copyright (C) 2018 Sven-Göran Bergh <sgb@systemaxion.se>
(C) Eero Tamminen <oak at welho dot com>

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_unxz.c
-------------------------------------

This file uses XZ Embedded library code which is written
by Lasse Collin <lasse.collin@tukaani.org>
and Igor Pavlov <http://7-zip.org/>

This file is:
Copyright (C) 2010 Denys Vlasenko <vda.linux@googlemail.com>
Licensed under GPLv2, 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/libbb.h
---------------

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, 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/crc32.c
-------------

Copyright (C) 2006 by Rob Sullivan <cogito.ergo.cogito@gmail.com>
(I can't really claim much credit however, as the algorithm is
very well-known)

Licensed under GPLv2, 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/platform.c
----------------

Copyright (C) 2009 by Dan Fandrich <dan@coneharvesters.com>, et. al.

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

Copyright (C) 2005 Free Software Foundation, Inc.

Copyright (c) 1999, 2000 The ht://Dig Group
Copyright (C) 2004 Free Software Foundation, Inc.

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

networking/nc_bloaty.c
----------------------
Based on netcat 1.10 RELEASE 960320 written by hobbit@avian.org.
Released into public domain by the author.

Copyright (C) 2007 Denys Vlasenko.

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

Author's comments from nc 1.10:
=====================
Netcat is entirely my own creation, although plenty of other code was used as
examples.  It is freely given away to the Internet community in the hope that
it will be useful, with no restrictions except giving credit where it is due.
No GPLs, Berkeley copyrights or any of that nonsense.  The author assumes NO
responsibility for how anyone uses it.  If netcat makes you rich somehow and
you're feeling generous, mail me a check.  If you are affiliated in any way
with Microsoft Network, get a life.  Always ski in control.  Comments,
questions, and patches to hobbit@avian.org.
...
Netcat and the associated package is a product of Avian Research, and is freely
available in full source form with no restrictions save an obligation to give
credit where due.
...
=====================

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

networking/tcpudp.c, networking/tcpudp_perhost.c, networking/tcpudp_perhost.h
-----------------------------------------------------------------------------

Based on ipsvd utilities written by Gerrit Pape <pape@smarden.org>
which are released into public domain by the author.
Homepage: http://smarden.sunsite.dk/ipsvd/

Copyright (C) 2007 Denys Vlasenko.

Licensed under GPLv2, 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/tls_aes.c
--------------------

Copyright (C) 2017 Denys Vlasenko

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

This AES implementation is derived from tiny-AES128-C code,
which was put by its author into public domain:

tiny-AES128-C/unlicense.txt, Dec 8, 2014
"""
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

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 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.
"""

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

networking/tls_fe.c
-------------------

Copyright (C) 2018 Denys Vlasenko

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

Copyright (C) 2006-2017 wolfSSL Inc.

This file is part of wolfSSL.

wolfSSL 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.

wolfSSL 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA

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

networking/tls_pstm.c
---------------------

Copyright (C) 2017 Denys Vlasenko

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


     Copyright (c) 2013-2015 INSIDE Secure Corporation
     Copyright (c) PeerSec Networks, 2002-2011
     All Rights Reserved

     The latest version of this code is available at http://www.matrixssl.org

     This software is open source; 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 General Public License does NOT permit incorporating this software
     into proprietary programs.  If you are unable to comply with the GPL, a
     commercial license for this software may be purchased from INSIDE at
     http://www.insidesecure.com/eng/Company/Locations

     This program is distributed in 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
     http://www.gnu.org/copyleft/gpl.html

	Based on implementations by:
		Copyright (C) 2003 Bernardo Innocenti <bernie@develer.com>
		Copyright (C) 1999 Hewlett-Packard Co
		Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>

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

networking/tls_pstm.h, networking/tls_pstm_montgomery_reduce.c,
networking/tls_pstm_mul_comba.c, networking/tls_pstm_sqr_comba.c,
networking/tls_symmetric.h
-----------------------------------------------------------------

Copyright (C) 2017 Denys Vlasenko

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


     Copyright (c) 2013-2015 INSIDE Secure Corporation
     Copyright (c) PeerSec Networks, 2002-2011
     All Rights Reserved

     The latest version of this code is available at http://www.matrixssl.org

     This software is open source; 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 General Public License does NOT permit incorporating this software
     into proprietary programs.  If you are unable to comply with the GPL, a
     commercial license for this software may be purchased from INSIDE at
     http://www.insidesecure.com/eng/Company/Locations

     This program is distributed in 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
     http://www.gnu.org/copyleft/gpl.html

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

networking/tunctl.c
-------------------

Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>

Original code:
     Jeff Dike

Licensed under GPLv2, 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/d6_dhcpc.c
---------------------------

Copyright (C) 2011-2017 Denys Vlasenko.

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

and filter shamelessly stolen from:

     http://www.flamewarmaster.de/software/dhcpclient/

Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
License: GPL v2.

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

networking/udhcp/dhcprelay.c
----------------------------

Port to Busybox Copyright (C) 2006 Jesse Dutton <jessedutton@gmail.com>

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

Copyright (C) 2002 Mario Strasser <mast@gmx.net>,
                  Zuercher Hochschule Winterthur,
                  Netbeat AG
Upstream has GPL v2 or later

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

networking/wget.c
-----------------

Chip Rosenthal Covad Communications <chip@laserlink.net>
Licensed under GPLv2, see file LICENSE in this source tree.

Copyright (C) 2010 Bradley M. Kuhn <bkuhn@ebb.org>
Kuhn's copyrights are licensed GPLv2-or-later.  File as a whole remains GPLv2.

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

printutils/lpr.c
----------------

Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>

Original idea and code:
     Walter Harms <WHarms@bfs.de>

Licensed under GPLv2, 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>.

procps/powertop.c
-----------------

Based on powertop 1.11.

Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>

Licensed under GPLv2, 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>.

procps/pstree.c
---------------

Copyright (C) 1993-2002 Werner Almesberger
Copyright (C) 2002-2009 Craig Small
Copyright (C) 2010 Lauri Kasanen

Based on pstree (PSmisc) 22.13.

Licensed under GPLv2, 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>.

procps/pwdx.c
-------------

Copyright (c) 2004 Nicholas Miell
ported from procps by Pere Orga <gotrunks@gmail.com> 2011

Licensed under GPLv2, 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/fdisk_sgi.c
----------------------

Copyright (C) Andreas Neuper, Sep 1998.

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

Copyright (C) Andreas Neuper, Sep 1998.
     This file may be modified and redistributed under
     the terms of the GNU Public License.

Sat Mar 20 EST 1999 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
     Internationalization

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

util-linux/fsck_minix.c
-----------------------

(C) 1991, 1992 Linus Torvalds.

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

Code adapted from e2fsck, Copyright (C) 1993, 1994 Theodore Ts'o.
Also licensed under GPL.

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