-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages
6194 lines (5796 loc) · 197 KB
/
Packages
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
Package: alsa-lib
Version: 1.0.24.1-1
Depends: libc, kmod-sound-core, libpthread, librt
Source: feeds/packages/libs/alsa-lib
SourceFile: alsa-lib-1.0.24.1.tar.bz2
SourceURL: ftp://ftp.alsa-project.org/pub/lib/ http://alsa.cybermirror.org/lib/
License: LGPLv2.1 GPLv2
Section: libs
Architecture: ib42x0
Installed-Size: 315269
Filename: alsa-lib_1.0.24.1-1_ib42x0.ipk
Size: 312122
MD5Sum: cb760b71f1f3d276f17335d4c72ed633
Description: This is the library package for alsa, needed by some userspace programs.
You must have enabled the ALSA support in the kernel.
Package: at
Version: 3.1.13-1
Depends: libc, libelf1
Source: feeds/packages/utils/at
SourceFile: at_3.1.13.orig.tar.gz
SourceURL: http://ftp.debian.org/debian/pool/main/a/at
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ib42x0
Installed-Size: 24894
Filename: at_3.1.13-1_ib42x0.ipk
Size: 25450
MD5Sum: 915cc6692e3cd2c279f320935cdb7dba
Description: At and batch read shell commands from standard input storing them as a job to
be scheduled for execution in the future.
Package: base-files
Version: 137-r36486
Depends: libc, netifd, procd
Source: package/base-files
Section: base
Architecture: ib42x0
Installed-Size: 27820
Filename: base-files_137-r36486_ib42x0.ipk
Size: 28493
MD5Sum: 9628098a64f9105b23d7822bf1e58b1d
Description: This package contains a base filesystem and system scripts for OpenWrt.
Package: binutils
Version: 2.22-5
Depends: libc, objdump
Source: package/devel/binutils
SourceFile: binutils-2.22.tar.bz2
SourceURL: @GNU/binutils
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ib42x0
Installed-Size: 895589
Filename: binutils_2.22-5_ib42x0.ipk
Size: 891597
MD5Sum: d9084d6ee33335089b87d354dd89684c
Description: The Binutils package contains a linker, an assembler, and other tools for handling object files
Package: blkid
Version: 2.21.2-1
Depends: libc, libblkid
Source: package/util-linux
SourceFile: util-linux-2.21.2.tar.xz
SourceURL: @KERNEL/linux/utils/util-linux/v2.21
License: GPLv2 LGPLv2.1 BSD-3c
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ib42x0
Installed-Size: 12329
Filename: blkid_2.21.2-1_ib42x0.ipk
Size: 13027
MD5Sum: d19bf1b16fad03bed6bdabc75e7ec233
Description: The blkid program is the command-line interface to working with the libblkid
library.
Package: block-mount
Version: 0.2.0-10
Depends: libc, blkid, swap-utils
Source: package/block-mount
Section: base
Architecture: ib42x0
Installed-Size: 6084
Filename: block-mount_0.2.0-10_ib42x0.ipk
Size: 6805
MD5Sum: 42081930ce988a00619b976567f20615
Description: Scripts used to mount and check block devices (filesystems and swap), as well
as hotplug scripts to automount and check block devices when hotplug event (e.g.
from plugging in a device) occurs.
Also includes preinit scripts for mounting a block device as the root filesystem.
This allows one to have the root filesystem on devices other than the built in flash
device.
Package: bzip2
Version: 1.0.6-1
Depends: libc, libbz2
Source: feeds/packages/utils/bzip2
SourceFile: bzip2-1.0.6.tar.gz
SourceURL: http://www.bzip.org/1.0.6
License: BZIP2
LicenseFiles: LICENSE
Section: utils
Architecture: ib42x0
Installed-Size: 13446
Filename: bzip2_1.0.6-1_ib42x0.ipk
Size: 14057
MD5Sum: cfdee76f1c4a07258a4b49d0bfda99ca
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This package provides the binary.
Package: clearsilver
Version: 0.10.5-5
Depends: libc, zlib
Source: feeds/packages/libs/clearsilver
SourceFile: clearsilver-0.10.5.tar.gz
SourceURL: http://www.clearsilver.net/downloads/
Section: libs
Maintainer: Raphaël HUCK <[email protected]>
Architecture: ib42x0
Installed-Size: 140
Filename: clearsilver_0.10.5-5_ib42x0.ipk
Size: 868
MD5Sum: 9d505de0c472bcb43f08156d1c855d2d
Description: Clearsilver is a fast, powerful, and language-neutral HTML template system. In
both static content sites and dynamic HTML applications, it provides a separation
between presentation code and application logic which makes working with your
project easier.
Package: coreutils-base64
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 12076
Filename: coreutils-base64_8.9-1_ib42x0.ipk
Size: 12714
MD5Sum: 236242c93382720fb832da69e5e26008
Description: Full version of standard GNU base64 utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-basename
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9349
Filename: coreutils-basename_8.9-1_ib42x0.ipk
Size: 9960
MD5Sum: 6566c622b9f8994179e3b10f2544c46d
Description: Full version of standard GNU basename utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cat
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 15434
Filename: coreutils-cat_8.9-1_ib42x0.ipk
Size: 16010
MD5Sum: cb5104e9ebf5264dd84d09b5ea5b67b9
Description: Full version of standard GNU cat utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chcon
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 21210
Filename: coreutils-chcon_8.9-1_ib42x0.ipk
Size: 21810
MD5Sum: 9112f4fc1fe07d8fc2efbe98084365e0
Description: Full version of standard GNU chcon utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chgrp
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 23198
Filename: coreutils-chgrp_8.9-1_ib42x0.ipk
Size: 23826
MD5Sum: c84bf8bb7e3d5c36a77ac83065898abb
Description: Full version of standard GNU chgrp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chmod
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 19951
Filename: coreutils-chmod_8.9-1_ib42x0.ipk
Size: 20615
MD5Sum: cdf7d563b86d18a60ce534c469f36896
Description: Full version of standard GNU chmod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chown
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 24008
Filename: coreutils-chown_8.9-1_ib42x0.ipk
Size: 24555
MD5Sum: 4329a2629c74ae90b829d59f29ff0df9
Description: Full version of standard GNU chown utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chroot
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 11168
Filename: coreutils-chroot_8.9-1_ib42x0.ipk
Size: 11784
MD5Sum: 761fd7d42d396cec5f6f2d700619f36d
Description: Full version of standard GNU chroot utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cksum
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10829
Filename: coreutils-cksum_8.9-1_ib42x0.ipk
Size: 11448
MD5Sum: 97be2c7e6a978611d643c835aacade04
Description: Full version of standard GNU cksum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-comm
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 11730
Filename: coreutils-comm_8.9-1_ib42x0.ipk
Size: 12353
MD5Sum: ea6c17e5ca860841411c369e7abde340
Description: Full version of standard GNU comm utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cp
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 36738
Filename: coreutils-cp_8.9-1_ib42x0.ipk
Size: 37353
MD5Sum: 08b3572f5d70d1f46f5f2459a8fc0ddc
Description: Full version of standard GNU cp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-csplit
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 43039
Filename: coreutils-csplit_8.9-1_ib42x0.ipk
Size: 43690
MD5Sum: 8dd95e712d8a40f5c0430ed51cb68b35
Description: Full version of standard GNU csplit utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cut
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 15777
Filename: coreutils-cut_8.9-1_ib42x0.ipk
Size: 16362
MD5Sum: 832be148dcb40b155e70fe0bdef51729
Description: Full version of standard GNU cut utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-date
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 24526
Filename: coreutils-date_8.9-1_ib42x0.ipk
Size: 25144
MD5Sum: 02cfc1183ca1883df1053edaed902dde
Description: Full version of standard GNU date utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dd
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 20686
Filename: coreutils-dd_8.9-1_ib42x0.ipk
Size: 21282
MD5Sum: 1e2740e22106d72b7c4a0b85c1382f89
Description: Full version of standard GNU dd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dir
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 44766
Filename: coreutils-dir_8.9-1_ib42x0.ipk
Size: 45370
MD5Sum: 558653446dad43c365ee3cc56939a104
Description: Full version of standard GNU dir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dircolors
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 13735
Filename: coreutils-dircolors_8.9-1_ib42x0.ipk
Size: 14384
MD5Sum: 2a039f45adecd7b54c56f0dbd94cddd9
Description: Full version of standard GNU dircolors utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dirname
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9387
Filename: coreutils-dirname_8.9-1_ib42x0.ipk
Size: 10003
MD5Sum: e337a90e4fbe0e5bff2c3eb7852fd3c9
Description: Full version of standard GNU dirname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-du
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 41411
Filename: coreutils-du_8.9-1_ib42x0.ipk
Size: 41984
MD5Sum: 1b5162f22ded49013c69e1a62ea426b1
Description: Full version of standard GNU du utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-echo
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 8083
Filename: coreutils-echo_8.9-1_ib42x0.ipk
Size: 8740
MD5Sum: 0eb5cdc0d0f0ce9d1aba1ab835590a85
Description: Full version of standard GNU echo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-env
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9809
Filename: coreutils-env_8.9-1_ib42x0.ipk
Size: 10418
MD5Sum: 6df6dd8e5b48c034cb8f076e702faac9
Description: Full version of standard GNU env utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expand
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10670
Filename: coreutils-expand_8.9-1_ib42x0.ipk
Size: 11280
MD5Sum: cd71fa84e17cf73b1ad76809ecf63469
Description: Full version of standard GNU expand utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expr
Version: 8.9-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 39286
Filename: coreutils-expr_8.9-1_ib42x0.ipk
Size: 39972
MD5Sum: 3876b13c541cb0acb59b049c8e43ad9b
Description: Full version of standard GNU expr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-factor
Version: 8.9-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 18213
Filename: coreutils-factor_8.9-1_ib42x0.ipk
Size: 18815
MD5Sum: b601036cc8b0018b693ea30d38b08391
Description: Full version of standard GNU factor utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-false
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 6913
Filename: coreutils-false_8.9-1_ib42x0.ipk
Size: 7571
MD5Sum: c7646623a504064961a82204d6e82fdf
Description: Full version of standard GNU false utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fmt
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 12902
Filename: coreutils-fmt_8.9-1_ib42x0.ipk
Size: 13518
MD5Sum: d5ffa978d4c14fbadd6cbee4abef7c5b
Description: Full version of standard GNU fmt utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fold
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10716
Filename: coreutils-fold_8.9-1_ib42x0.ipk
Size: 11323
MD5Sum: 02f00350cf2b6a9f8884c97732d9ad93
Description: Full version of standard GNU fold utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-groups
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9969
Filename: coreutils-groups_8.9-1_ib42x0.ipk
Size: 10593
MD5Sum: 805d9b19560a2c9b55e555be19c3de27
Description: Full version of standard GNU groups utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-head
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 13907
Filename: coreutils-head_8.9-1_ib42x0.ipk
Size: 14547
MD5Sum: 09d7f72ea9efbfe5bf5e85d5117ab582
Description: Full version of standard GNU head utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-hostid
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 8942
Filename: coreutils-hostid_8.9-1_ib42x0.ipk
Size: 9611
MD5Sum: b4147bdd3d35978c34d9489b079da4f7
Description: Full version of standard GNU hostid utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-id
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10951
Filename: coreutils-id_8.9-1_ib42x0.ipk
Size: 11564
MD5Sum: 3b3496951fc6fde0344b675ccd7ed58c
Description: Full version of standard GNU id utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-install
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 40728
Filename: coreutils-install_8.9-1_ib42x0.ipk
Size: 41322
MD5Sum: 5578e118eabde4fbb98c62a7aabc327f
Description: Full version of standard GNU install utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-join
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 15101
Filename: coreutils-join_8.9-1_ib42x0.ipk
Size: 15678
MD5Sum: 2f133ae2eda8bc4e212d516c6d4622ae
Description: Full version of standard GNU join utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-kill
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 11089
Filename: coreutils-kill_8.9-1_ib42x0.ipk
Size: 11692
MD5Sum: 245aafb3b4c6cf22e7980b65a57fb150
Description: Full version of standard GNU kill utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-link
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9358
Filename: coreutils-link_8.9-1_ib42x0.ipk
Size: 9960
MD5Sum: cf9421a84dccebad3ced9ca69f7a68ed
Description: Full version of standard GNU link utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ln
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 20375
Filename: coreutils-ln_8.9-1_ib42x0.ipk
Size: 20988
MD5Sum: 8bd7b6645ae8e899473bb4758ec32952
Description: Full version of standard GNU ln utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-logname
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 8957
Filename: coreutils-logname_8.9-1_ib42x0.ipk
Size: 9623
MD5Sum: a85a9306243f0b671ec820990d4d4542
Description: Full version of standard GNU logname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ls
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 44765
Filename: coreutils-ls_8.9-1_ib42x0.ipk
Size: 45366
MD5Sum: 5ae56dff452e17b3f037c118c1443381
Description: Full version of standard GNU ls utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-md5sum
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 14465
Filename: coreutils-md5sum_8.9-1_ib42x0.ipk
Size: 15103
MD5Sum: 39b413e57a3bce3deb1639e291d20b51
Description: Full version of standard GNU md5sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkdir
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 18485
Filename: coreutils-mkdir_8.9-1_ib42x0.ipk
Size: 19139
MD5Sum: 4feaf3a6b0995469a9e3fb931190f9c6
Description: Full version of standard GNU mkdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkfifo
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10121
Filename: coreutils-mkfifo_8.9-1_ib42x0.ipk
Size: 10730
MD5Sum: cb76a5f5e2f16c90909b8bb933688a18
Description: Full version of standard GNU mkfifo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mknod
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 11595
Filename: coreutils-mknod_8.9-1_ib42x0.ipk
Size: 12224
MD5Sum: 37500784482d5c6e9bd3ac224dc34b9c
Description: Full version of standard GNU mknod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mktemp
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 14043
Filename: coreutils-mktemp_8.9-1_ib42x0.ipk
Size: 14682
MD5Sum: 2ae999d86c13e2346e75928b2f3b933c
Description: Full version of standard GNU mktemp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mv
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 36870
Filename: coreutils-mv_8.9-1_ib42x0.ipk
Size: 37466
MD5Sum: d9b3db1a771e31e270d76ced192fd58b
Description: Full version of standard GNU mv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nice
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10211
Filename: coreutils-nice_8.9-1_ib42x0.ipk
Size: 10817
MD5Sum: 324aef5cfb54f69f3b16cae698665ab6
Description: Full version of standard GNU nice utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nl
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 39900
Filename: coreutils-nl_8.9-1_ib42x0.ipk
Size: 40552
MD5Sum: 1c74f721589da1e5cb45ab4cb9a06b50
Description: Full version of standard GNU nl utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nohup
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10521
Filename: coreutils-nohup_8.9-1_ib42x0.ipk
Size: 11121
MD5Sum: 31b327cad585d2ee502bbbd11b8e76f9
Description: Full version of standard GNU nohup utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nproc
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10096
Filename: coreutils-nproc_8.9-1_ib42x0.ipk
Size: 10705
MD5Sum: c2b3ba6df81d36fae18213737dcb9388
Description: Full version of standard GNU nproc utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-od
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 25250
Filename: coreutils-od_8.9-1_ib42x0.ipk
Size: 25802
MD5Sum: 3887403394a3b4e99e5d5d887b5caa19
Description: Full version of standard GNU od utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-paste
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 10612
Filename: coreutils-paste_8.9-1_ib42x0.ipk
Size: 11219
MD5Sum: e92e58d8fe9182a9ecef408a030762a4
Description: Full version of standard GNU paste utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pathchk
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9988
Filename: coreutils-pathchk_8.9-1_ib42x0.ipk
Size: 10587
MD5Sum: 736a68be7a4f8aeb6819155fa66eba40
Description: Full version of standard GNU pathchk utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pinky
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 12143
Filename: coreutils-pinky_8.9-1_ib42x0.ipk
Size: 12767
MD5Sum: 6e13bc71cc3078aced58692623b93152
Description: Full version of standard GNU pinky utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pr
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 23792
Filename: coreutils-pr_8.9-1_ib42x0.ipk
Size: 24379
MD5Sum: 0a7b3e4ad2945e8f4e68e0a4ea638c7e
Description: Full version of standard GNU pr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printenv
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 9302
Filename: coreutils-printenv_8.9-1_ib42x0.ipk
Size: 9917
MD5Sum: 8c2e51adc2f3d82c82df2d2038303a23
Description: Full version of standard GNU printenv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printf
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 17069
Filename: coreutils-printf_8.9-1_ib42x0.ipk
Size: 17710
MD5Sum: 6cf0c8bbaf0c7b707e3322c42ec0813e
Description: Full version of standard GNU printf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ptx
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 48230
Filename: coreutils-ptx_8.9-1_ib42x0.ipk
Size: 48933
MD5Sum: 64c5f584ee1c25d204fa9c27e908144b
Description: Full version of standard GNU ptx utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pwd
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 12504
Filename: coreutils-pwd_8.9-1_ib42x0.ipk
Size: 13115
MD5Sum: e9092f84183ed1c6cbf4ae7d5b4e5bfb
Description: Full version of standard GNU pwd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-readlink
Version: 8.9-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
SourceFile: coreutils-8.9.tar.xz
SourceURL: @GNU/coreutils
Section: utils
Architecture: ib42x0
Installed-Size: 14449
Filename: coreutils-readlink_8.9-1_ib42x0.ipk
Size: 15043
MD5Sum: 34c8a883c765504800b393926d9be2c3
Description: Full version of standard GNU readlink utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-rm
Version: 8.9-1