-
Notifications
You must be signed in to change notification settings - Fork 0
/
.config
2346 lines (2189 loc) · 64.2 KB
/
.config
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
#
# Automatically generated file; DO NOT EDIT.
# Freetz Configuration
#
FREETZ_HAVE_DOT_CONFIG=y
#
# Freetz version -------------------------
#
#
# master-20191016-71f648392
#
#
# User competence ------------------------
#
# FREETZ_USER_LEVEL_BEGINNER is not set
# FREETZ_USER_LEVEL_ADVANCED is not set
FREETZ_USER_LEVEL_EXPERT=y
FREETZ_SHOW_ADVANCED=y
FREETZ_SHOW_EXPERT=y
#
# Hardware/Firmware ----------------------
#
#
# WLAN Repeater
#
# FREETZ_TYPE_1750 is not set
# FREETZ_TYPE_3000 is not set
#
# LAN
#
# FREETZ_TYPE_2170 is not set
#
# WLAN
#
# FREETZ_TYPE_3020 is not set
# FREETZ_TYPE_3030 is not set
# FREETZ_TYPE_3130 is not set
# FREETZ_TYPE_3131 is not set
# FREETZ_TYPE_3170 is not set
# FREETZ_TYPE_3270_V2 is not set
# FREETZ_TYPE_3270_V3 is not set
# FREETZ_TYPE_3272 is not set
# FREETZ_TYPE_3370 is not set
# FREETZ_TYPE_3390 is not set
# FREETZ_TYPE_3490 is not set
#
# WAN
#
# FREETZ_TYPE_4020 is not set
# FREETZ_TYPE_4040 is not set
#
# Fon
#
# FREETZ_TYPE_FON is not set
# FREETZ_TYPE_5010 is not set
# FREETZ_TYPE_5050 is not set
# FREETZ_TYPE_5124 is not set
# FREETZ_TYPE_5140 is not set
#
# Fiber
#
# FREETZ_TYPE_5490 is not set
# FREETZ_TYPE_5491 is not set
#
# Cable
#
# FREETZ_TYPE_6490 is not set
# FREETZ_TYPE_6590 is not set
#
# LTE
#
# FREETZ_TYPE_6810 is not set
# FREETZ_TYPE_6820_V1 is not set
# FREETZ_TYPE_6820_V2 is not set
# FREETZ_TYPE_6840 is not set
# FREETZ_TYPE_6842 is not set
# FREETZ_TYPE_6890 is not set
#
# Fon WLAN
#
# FREETZ_TYPE_WLAN is not set
# FREETZ_TYPE_7050 is not set
# FREETZ_TYPE_7112 is not set
# FREETZ_TYPE_7113 is not set
# FREETZ_TYPE_7140 is not set
# FREETZ_TYPE_7141 is not set
# FREETZ_TYPE_7150 is not set
# FREETZ_TYPE_7170 is not set
# FREETZ_TYPE_7240 is not set
# FREETZ_TYPE_7270_V1 is not set
# FREETZ_TYPE_7270_V2 is not set
# FREETZ_TYPE_7270_V3 is not set
# FREETZ_TYPE_7272 is not set
FREETZ_TYPE_7312=y
# FREETZ_TYPE_7320 is not set
# FREETZ_TYPE_7330_XL is not set
# FREETZ_TYPE_7330_SL is not set
# FREETZ_TYPE_7340 is not set
# FREETZ_TYPE_7360_V1 is not set
# FREETZ_TYPE_7360_V2 is not set
# FREETZ_TYPE_7360_SL is not set
# FREETZ_TYPE_7362 is not set
# FREETZ_TYPE_7369 is not set
# FREETZ_TYPE_7390 is not set
# FREETZ_TYPE_7412 is not set
# FREETZ_TYPE_7430 is not set
# FREETZ_TYPE_7490 is not set
# FREETZ_TYPE_7520 is not set
# FREETZ_TYPE_7530 is not set
# FREETZ_TYPE_7560 is not set
# FREETZ_TYPE_7570 is not set
# FREETZ_TYPE_7580 is not set
# FREETZ_TYPE_7583 is not set
# FREETZ_TYPE_7590 is not set
#
# T-Com hardware
#
# FREETZ_TYPE_300IP is not set
# FREETZ_TYPE_W501V is not set
FREETZ_TYPE_LANG_DE=y
FREETZ_TYPE_FIRMWARE_06_2X=y
# FREETZ_TYPE_FIRMWARE_06_5X is not set
FREETZ_TYPE_FIRMWARE_FINAL=y
FREETZ_TYPE_LANGUAGE="de"
#
# Original components --------------------
#
FREETZ_TARGET_IPV6_SUPPORT=y
# FREETZ_REPLACE_KERNEL is not set
#
# Removal patches
#
#
# Removal patches ------------------------
#
# FREETZ_REMOVE_MULTI_ANNEX_FIRMWARE_DIFFS is not set
# FREETZ_REMOVE_ASSISTANT is not set
# FREETZ_REMOVE_MYFRITZ is not set
# FREETZ_REMOVE_AVM_VPN is not set
#
# Remove brandings
#
# FREETZ_REMOVE_BRANDING_1und1 is not set
# FREETZ_REMOVE_BRANDING_avm is not set
# end of Remove brandings
# FREETZ_REMOVE_CAPIOVERTCP is not set
# FREETZ_REMOVE_CHRONYD is not set
# FREETZ_REMOVE_DECT is not set
# FREETZ_REMOVE_DSLD is not set
# FREETZ_REMOVE_SHOWDSLDSTAT is not set
FREETZ_REMOVE_DTRACE=y
# FREETZ_REMOVE_HELP is not set
# FREETZ_REMOVE_RAMZSWAP is not set
# FREETZ_REMOVE_LSOF is not set
# FREETZ_REMOVE_RUNCLOCK is not set
# FREETZ_REMOVE_SUPPORT is not set
# FREETZ_REMOVE_TR069 is not set
# FREETZ_REMOVE_UMTSD is not set
# FREETZ_REMOVE_UPNP is not set
# FREETZ_REMOVE_KIDS is not set
# FREETZ_REMOVE_QOS is not set
# FREETZ_REMOVE_AVM_E2FSPROGS is not set
# FREETZ_REMOVE_VOIPD is not set
# FREETZ_REMOVE_TELEPHONY is not set
# FREETZ_REMOVE_WLAN is not set
# end of Removal patches
#
# Other patches
#
#
# Web menu patches -----------------------
#
# FREETZ_PATCH_ATA is not set
# FREETZ_PATCH_GSMVOICE is not set
# FREETZ_PATCH_SIGNED is not set
# FREETZ_ENABLE_LED_DEACTIVATION is not set
# FREETZ_MODIFY_UMTSD is not set
# FREETZ_CUSTOM_UDEV_RULES is not set
#
# Replacement patches --------------------
#
# FREETZ_REPLACE_DTRACE is not set
# FREETZ_REPLACE_ONLINECHANGED is not set
#
# Additional patches ---------------------
#
FREETZ_ADD_ETCSERVICES=y
# FREETZ_ENFORCE_URLADER_SETTINGS is not set
#
# modfs patches --------------------------
#
# FREETZ_PATCH_MODFS_ANNEX_SELECTION is not set
#
# Misc patches ---------------------------
#
# FREETZ_DISABLE_SERIAL_CONSOLE is not set
FREETZ_RESTORE_DEBUG_CFG_SUPPORT=y
# FREETZ_ASYNCHRONOUS_DEBUG_CFG is not set
#
# AVM daemons ----------------------------
#
# FREETZ_AVMDAEMON_DISABLE_IGD is not set
FREETZ_AVMDAEMON_DISABLE_NTP=y
# FREETZ_AVMDAEMON_DISABLE_IGM is not set
# FREETZ_AVMDAEMON_DISABLE_TR069 is not set
# FREETZ_AVMDAEMON_DISABLE_MULTIDPORTS is not set
# end of Other patches
#
# Additional components ------------------
#
#
# Packages
#
#
# Debug helpers
#
# FREETZ_PACKAGE_GDB is not set
# FREETZ_PACKAGE_INOTIFY_TOOLS is not set
# FREETZ_PACKAGE_LDD is not set
# FREETZ_PACKAGE_LSOF is not set
# FREETZ_PACKAGE_LTRACE is not set
# FREETZ_PACKAGE_NANO_SHELL is not set
# FREETZ_PACKAGE_PCIUTILS is not set
# FREETZ_PACKAGE_STRACE is not set
# FREETZ_PACKAGE_USBUTILS is not set
# end of Debug helpers
#
# Packages
#
# FREETZ_PACKAGE_APACHE2 is not set
# FREETZ_PACKAGE_ATOP is not set
# FREETZ_PACKAGE_AUTOFS is not set
# FREETZ_PACKAGE_AUTOSSH is not set
# FREETZ_PACKAGE_AVAHI is not set
# FREETZ_PACKAGE_BASH is not set
# FREETZ_PACKAGE_BFTPD is not set
# FREETZ_PACKAGE_BFUSB is not set
# FREETZ_PACKAGE_BIND is not set
# FREETZ_PACKAGE_BIP is not set
# FREETZ_PACKAGE_BIRD is not set
# FREETZ_PACKAGE_BITTWIST is not set
# FREETZ_PACKAGE_BLUEZ_UTILS is not set
# FREETZ_PACKAGE_BRIDGE_UTILS is not set
# FREETZ_PACKAGE_BVI is not set
# FREETZ_PACKAGE_CACERTS is not set
# FREETZ_PACKAGE_CALLMONITOR is not set
# FREETZ_PACKAGE_CCID is not set
# FREETZ_PACKAGE_CHECKMAILD is not set
#
# Cifsmount (not available, needs replace kernel)
#
# FREETZ_PACKAGE_CLASSPATH is not set
# FREETZ_PACKAGE_CNTLM is not set
# FREETZ_PACKAGE_COMGT is not set
# FREETZ_PACKAGE_CRYPTSETUP is not set
# FREETZ_PACKAGE_CTORRENT is not set
# FREETZ_PACKAGE_CURL is not set
# FREETZ_PACKAGE_DANTE is not set
# FREETZ_PACKAGE_DAVFS2 is not set
# FREETZ_PACKAGE_DBUS is not set
# FREETZ_PACKAGE_DEBOOTSTRAP is not set
# FREETZ_PACKAGE_DECO is not set
# FREETZ_PACKAGE_DECRYPT_FRITZOS_CFG is not set
# FREETZ_PACKAGE_DIGITEMP is not set
# FREETZ_PACKAGE_DNS2TCP is not set
# FREETZ_PACKAGE_DNSMASQ is not set
# FREETZ_PACKAGE_DOSFSTOOLS is not set
FREETZ_PACKAGE_DROPBEAR=y
# FREETZ_PACKAGE_DROPBEAR_SFTP_SERVER is not set
# FREETZ_PACKAGE_DROPBEAR_SERVER_ONLY is not set
# FREETZ_PACKAGE_DROPBEAR_WITH_ZLIB is not set
FREETZ_PACKAGE_DROPBEAR_DISABLE_HOST_LOOKUP=y
# FREETZ_PACKAGE_DROPBEAR_UTMP is not set
# FREETZ_PACKAGE_DROPBEAR_WTMP is not set
# FREETZ_PACKAGE_DROPBEAR_STATIC is not set
# FREETZ_PACKAGE_DROPBEAR_NONFREETZ is not set
# FREETZ_PACKAGE_DTACH is not set
# FREETZ_PACKAGE_DVBSNOOP is not set
# FREETZ_PACKAGE_DVBSTREAM is not set
# FREETZ_PACKAGE_DVBTUNE is not set
# FREETZ_PACKAGE_E2FSPROGS is not set
#
# E-MailRelay (not available, needs libstdc++ as Standard C++ Library)
#
# FREETZ_PACKAGE_EMPTY is not set
# FREETZ_PACKAGE_ESPEAK is not set
# FREETZ_PACKAGE_FFMPEG is not set
# FREETZ_PACKAGE_FORTUNE is not set
# FREETZ_PACKAGE_FOWSR is not set
# FREETZ_PACKAGE_FSTYP is not set
# FREETZ_PACKAGE_FUSE is not set
# FREETZ_PACKAGE_GETDNS is not set
# FREETZ_PACKAGE_GHOSTSCRIPT_FONTS is not set
# FREETZ_PACKAGE_GIT is not set
# FREETZ_PACKAGE_GNTPSEND is not set
# FREETZ_PACKAGE_GNU_MAKE is not set
# FREETZ_PACKAGE_GNUTLS is not set
# FREETZ_PACKAGE_GOCR is not set
# FREETZ_PACKAGE_GW6 is not set
# FREETZ_PACKAGE_HAPROXY is not set
FREETZ_PACKAGE_HASERL=y
# FREETZ_PACKAGE_HASERL_WITH_LUA is not set
# FREETZ_PACKAGE_HOL is not set
# FREETZ_PACKAGE_HTML2TEXT is not set
# FREETZ_PACKAGE_HTOP is not set
# FREETZ_PACKAGE_HTPDATE is not set
# FREETZ_PACKAGE_HTTPRY is not set
# FREETZ_PACKAGE_HTTPTUNNEL is not set
# FREETZ_PACKAGE_ICONV is not set
# FREETZ_PACKAGE_IFSTAT is not set
# FREETZ_PACKAGE_IFTOP is not set
# FREETZ_PACKAGE_IGMPPROXY is not set
# FREETZ_PACKAGE_IMAGEMAGICK is not set
# FREETZ_PACKAGE_INADYN_MT is not set
# FREETZ_PACKAGE_INADYN_OPENDNS is not set
FREETZ_PACKAGE_INETD=y
# FREETZ_PACKAGE_INETD_TIME is not set
# FREETZ_PACKAGE_IODINE is not set
FREETZ_PACKAGE_IPERF=y
# FREETZ_PACKAGE_IPERF_WITH_OPENSSL is not set
# FREETZ_PACKAGE_IPTRAF is not set
# FREETZ_PACKAGE_IPUTILS is not set
# FREETZ_PACKAGE_IRSSI is not set
# FREETZ_PACKAGE_ISC_DHCP is not set
# FREETZ_PACKAGE_JAMVM is not set
# FREETZ_PACKAGE_JQ is not set
# FREETZ_PACKAGE_JS is not set
# FREETZ_PACKAGE_KNOCK is not set
# FREETZ_PACKAGE_LFTP is not set
# FREETZ_PACKAGE_LIGHTTPD is not set
# FREETZ_PACKAGE_LUA is not set
# FREETZ_PACKAGE_LYNX is not set
# FREETZ_PACKAGE_MADPLAY is not set
# FREETZ_PACKAGE_MC is not set
# FREETZ_PACKAGE_MCABBER is not set
# FREETZ_PACKAGE_MEDIATOMB is not set
# FREETZ_PACKAGE_MICROPERL is not set
# FREETZ_PACKAGE_MINICOM is not set
# FREETZ_PACKAGE_MINIDLNA is not set
# FREETZ_PACKAGE_MINI_SNMPD is not set
FREETZ_PACKAGE_MOD=y
FREETZ_PACKAGE_MOD_ETCSERVICES=y
FREETZ_PACKAGE_MODCGI=y
# FREETZ_PACKAGE_MODULE_INIT_TOOLS is not set
# FREETZ_PACKAGE_MTR is not set
# FREETZ_PACKAGE_NAGIOS is not set
# FREETZ_PACKAGE_NANO is not set
# FREETZ_PACKAGE_NC6 is not set
# FREETZ_PACKAGE_NCFTP is not set
# FREETZ_PACKAGE_NDAS is not set
# FREETZ_PACKAGE_NETATALK is not set
# FREETZ_PACKAGE_NETCAT is not set
# FREETZ_PACKAGE_NETPBM is not set
# FREETZ_PACKAGE_NETSNMP is not set
#
# NFS-root (not available, needs replace kernel)
#
#
# nfs-utils (not available, needs replace kernel)
#
# FREETZ_PACKAGE_NGIRCD is not set
# FREETZ_PACKAGE_NMAP is not set
# FREETZ_PACKAGE_NOIP is not set
# FREETZ_PACKAGE_NTFS is not set
# FREETZ_PACKAGE_NZBGET is not set
# FREETZ_PACKAGE_OBEXFTP is not set
# FREETZ_PACKAGE_OIDENTD is not set
# FREETZ_PACKAGE_OPENCONNECT is not set
# FREETZ_PACKAGE_OPENDD is not set
# FREETZ_PACKAGE_OPENNTPD is not set
#
# OpenSSH
#
# FREETZ_PACKAGE_OPENSSH_sshd is not set
#
# Build OpenSSH client (ssh) (not available, provided by dropbear)
#
#
# Build OpenSSH secure copy utility (scp) (not available, provided by dropbear)
#
# FREETZ_PACKAGE_OPENSSH_CLIENTUTILS is not set
# FREETZ_PACKAGE_OPENSSH_KEYUTILS is not set
# FREETZ_PACKAGE_OPENSSH_sftp is not set
# FREETZ_PACKAGE_OPENSSH_sftp_server is not set
# end of OpenSSH
# FREETZ_PACKAGE_OPENSSL is not set
FREETZ_PACKAGE_OPENVPN=y
FREETZ_PACKAGE_OPENVPN_OPENSSL=y
# FREETZ_PACKAGE_OPENVPN_MBEDTLS is not set
FREETZ_PACKAGE_OPENVPN_WITH_BLOWFISH=y
# FREETZ_PACKAGE_OPENVPN_STATIC is not set
FREETZ_PACKAGE_OPENVPN_WITH_LZO=y
# FREETZ_PACKAGE_OPENVPN_WITH_LZ4 is not set
# FREETZ_PACKAGE_OPENVPN_WITH_TRAFFIC_OBFUSCATION is not set
# FREETZ_PACKAGE_OPENVPN_WITH_MGMNT is not set
FREETZ_PACKAGE_OPENVPN_ENABLE_SMALL=y
# FREETZ_PACKAGE_OPENVPN_USE_IPROUTE is not set
# FREETZ_PACKAGE_OPENVPN_USE_V2_CGI is not set
# FREETZ_PACKAGE_OWFS is not set
# FREETZ_PACKAGE_PCSC_LITE is not set
# FREETZ_PACKAGE_PHONEBOOK_TOOLS is not set
# FREETZ_PACKAGE_PHP is not set
# FREETZ_PACKAGE_PINGTUNNEL is not set
# FREETZ_PACKAGE_POLIPO is not set
# FREETZ_PACKAGE_PORTMAP is not set
# FREETZ_PACKAGE_PPP is not set
FREETZ_BOX_CERTIFICATE_SUPPORT_AVAILABLE=y
# FREETZ_PACKAGE_PRIVATEKEYPASSWORD is not set
# FREETZ_PACKAGE_PRIVOXY is not set
# FREETZ_PACKAGE_PYLOAD is not set
# FREETZ_PACKAGE_PYTHON is not set
# FREETZ_PACKAGE_QUAGGA is not set
# FREETZ_PACKAGE_RADVD is not set
# FREETZ_PACKAGE_RCAPID is not set
# FREETZ_PACKAGE_RIPMIME is not set
# FREETZ_PACKAGE_RRDTOOL is not set
# FREETZ_PACKAGE_RSYNC is not set
# FREETZ_PACKAGE_RTMPDUMP is not set
# FREETZ_PACKAGE_RUSH is not set
# FREETZ_PACKAGE_SABLEVM_SDK is not set
# FREETZ_PACKAGE_SAMBA is not set
# FREETZ_PACKAGE_SCREEN is not set
# FREETZ_PACKAGE_SER2NET is not set
# FREETZ_PACKAGE_SFK is not set
# FREETZ_PACKAGE_SHELLINABOX is not set
# FREETZ_PACKAGE_SIPROXD is not set
# FREETZ_PACKAGE_SISPMCTL is not set
# FREETZ_PACKAGE_SLANG is not set
# FREETZ_PACKAGE_SLURM is not set
# FREETZ_PACKAGE_SMARTMONTOOLS is not set
# FREETZ_PACKAGE_SMSTOOLS3 is not set
# FREETZ_PACKAGE_SMUSBUTIL is not set
# FREETZ_PACKAGE_SOCAT is not set
# FREETZ_PACKAGE_SPAWN_FCGI is not set
# FREETZ_PACKAGE_SQLITE is not set
# FREETZ_PACKAGE_SQUASHFS3 is not set
# FREETZ_PACKAGE_SQUASHFS4_BE is not set
# FREETZ_PACKAGE_SQUASHFS4_LE is not set
# FREETZ_PACKAGE_SSHFS_FUSE is not set
# FREETZ_PACKAGE_SSLH is not set
# FREETZ_PACKAGE_STREAMRIPPER is not set
# FREETZ_PACKAGE_STUNNEL is not set
# FREETZ_PACKAGE_SUBVERSION is not set
# FREETZ_PACKAGE_SUDO is not set
# FREETZ_PACKAGE_SUNDTEK is not set
# FREETZ_PACKAGE_SYNCE_DCCM is not set
# FREETZ_PACKAGE_TCPDUMP is not set
# FREETZ_PACKAGE_TCPPROXY is not set
# FREETZ_PACKAGE_TCP_WRAPPERS is not set
#
# Tesseract OCR (not available, needs libstdc++ as Standard C++ Library)
#
# FREETZ_PACKAGE_TICHKSUM is not set
# FREETZ_PACKAGE_TIFF is not set
FREETZ_PACKAGE_TINC=y
FREETZ_PACKAGE_TINC_VERSION_1_0=y
# FREETZ_PACKAGE_TINC_VERSION_1_1 is not set
# FREETZ_PACKAGE_TINC_STATIC is not set
# FREETZ_PACKAGE_TINYPROXY is not set
# FREETZ_PACKAGE_TMUX is not set
# FREETZ_PACKAGE_TOR is not set
# FREETZ_PACKAGE_TRANSMISSION is not set
# FREETZ_PACKAGE_TREE is not set
# FREETZ_PACKAGE_TRICKLE is not set
# FREETZ_PACKAGE_UDPXY is not set
# FREETZ_PACKAGE_UMURMUR is not set
# FREETZ_PACKAGE_UNFS3 is not set
# FREETZ_PACKAGE_UNRAR is not set
# FREETZ_PACKAGE_USBIDS is not set
# FREETZ_PACKAGE_UTIL_LINUX is not set
FREETZ_PACKAGE_VIM=y
FREETZ_PACKAGE_VIM_TINY=y
# FREETZ_PACKAGE_VIM_NORMAL is not set
# FREETZ_PACKAGE_VIM_HUGE is not set
# FREETZ_PACKAGE_VNSTAT is not set
# FREETZ_PACKAGE_VPNC is not set
# FREETZ_PACKAGE_VSFTPD is not set
FREETZ_PACKAGE_VTUN=y
# FREETZ_PACKAGE_VTUN_STATIC is not set
FREETZ_PACKAGE_VTUN_WITH_LZO=y
FREETZ_PACKAGE_VTUN_WITH_ZLIB=y
FREETZ_PACKAGE_VTUN_WITH_SSL=y
FREETZ_PACKAGE_VTUN_WITH_SHAPER=y
# FREETZ_PACKAGE_WGET is not set
# FREETZ_PACKAGE_WOL is not set
# FREETZ_PACKAGE_WPUT is not set
# FREETZ_PACKAGE_XMAIL is not set
# FREETZ_PACKAGE_XPDF is not set
# FREETZ_PACKAGE_XRELAYD is not set
# FREETZ_PACKAGE_XSLTPROC is not set
# FREETZ_PACKAGE_XZ is not set
# end of Packages
#
# Unstable
#
# FREETZ_PACKAGE_ASTERISK is not set
# FREETZ_PACKAGE_COLLECTD is not set
# FREETZ_PACKAGE_GPTFDISK is not set
# FREETZ_PACKAGE_HPLIP is not set
# FREETZ_PACKAGE_HP_UTILS is not set
# FREETZ_PACKAGE_IPTABLES is not set
FREETZ_PACKAGE_IPTABLES_IS_SELECTABLE=y
# FREETZ_PACKAGE_MINI_FO is not set
# FREETZ_PACKAGE_MOSQUITTO is not set
#
# SANE
#
# FREETZ_PACKAGE_SANE_BACKENDS is not set
# end of SANE
#
# SCANBUTTOND
#
# FREETZ_PACKAGE_SCANBUTTOND is not set
# end of SCANBUTTOND
# FREETZ_PACKAGE_SQUID is not set
# FREETZ_PACKAGE_USBIP is not set
# FREETZ_PACKAGE_VIRTUALIP_CGI is not set
# FREETZ_PACKAGE_ZABBIX is not set
# end of Unstable
#
# Web interfaces
#
FREETZ_PACKAGE_AUTHORIZED_KEYS=y
FREETZ_PACKAGE_AVM_FORWARDING=y
FREETZ_PACKAGE_DNSD_CGI=y
# FREETZ_PACKAGE_DOWNLOADER is not set
#
# NFSD CGI (not available, needs replace kernel)
#
# FREETZ_PACKAGE_ONLINECHANGED_CGI is not set
FREETZ_PACKAGE_OPENVPN_CGI=y
# FREETZ_PACKAGE_PHPXMAIL is not set
# FREETZ_PACKAGE_RRDSTATS is not set
# FREETZ_PACKAGE_SPINDOWN_CGI is not set
FREETZ_PACKAGE_SYSLOGD_CGI=y
# FREETZ_PACKAGE_TRANSMISSION_CGI is not set
# FREETZ_PACKAGE_VNSTAT_CGI is not set
# FREETZ_PACKAGE_WOL_CGI is not set
# end of Web interfaces
# end of Packages
#
# Shared libraries
#
#
# Apache Portable Runtime libs
#
# FREETZ_LIB_libapr is not set
# FREETZ_LIB_libaprutil is not set
# end of Apache Portable Runtime libs
#
# Avahi libraries
#
# FREETZ_LIB_libavahi_common is not set
# FREETZ_LIB_libavahi_core is not set
# FREETZ_LIB_libavahi_client is not set
# end of Avahi libraries
#
# C++
#
# FREETZ_LIB_libstdc__ is not set
# FREETZ_LIB_libuClibc__ is not set
# end of C++
#
# Charsets & Internationalization
#
# FREETZ_LIB_libiconv is not set
# FREETZ_LIB_libintl is not set
# end of Charsets & Internationalization
#
# Crypto & SSL
#
#
# GnuPG ----------------------------------
#
# FREETZ_LIB_libgpg_error is not set
# FREETZ_LIB_libgcrypt is not set
#
# Digests ---
#
# FREETZ_LIB_libgcrypt_WITH_DIGEST_blake2 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_crc is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_gostr3411_94 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_md4 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_md5 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_rmd160 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_sha1 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_sha256 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_sha512 is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_stribog is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_tiger is not set
# FREETZ_LIB_libgcrypt_WITH_DIGEST_whirlpool is not set
#
# Symmetric ciphers ---
#
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_aes is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_arcfour is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_blowfish is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_camellia is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_cast5 is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_des is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_gost28147 is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_idea is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_rfc2268 is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_salsa20 is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_seed is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_serpent is not set
# FREETZ_LIB_libgcrypt_WITH_SYMMETRIC_CIPHER_twofish is not set
#
# Asymmetric ciphers ---
#
# FREETZ_LIB_libgcrypt_WITH_ASYMMETRIC_CIPHER_dsa is not set
# FREETZ_LIB_libgcrypt_WITH_ASYMMETRIC_CIPHER_ecc is not set
# FREETZ_LIB_libgcrypt_WITH_ASYMMETRIC_CIPHER_elgamal is not set
# FREETZ_LIB_libgcrypt_WITH_ASYMMETRIC_CIPHER_rsa is not set
#
# GnuTLS ---------------------------------
#
# FREETZ_LIB_libgnutls is not set
# FREETZ_LIB_libtasn1 is not set
#
# mbed TLS -------------------------------
#
# FREETZ_LIB_libmbedcrypto is not set
# FREETZ_LIB_libmbedtls is not set
# FREETZ_LIB_libmbedx509 is not set
#
# Nettle ---------------------------------
#
# FREETZ_LIB_libnettle is not set
# FREETZ_LIB_libhogweed is not set
#
# OpenSSL --------------------------------
#
FREETZ_LIB_libcrypto=y
FREETZ_LIB_libssl=y
FREETZ_OPENSSL_VERSION_PROMPT=y
FREETZ_OPENSSL_VERSION_1_REQUIRED=y
FREETZ_OPENSSL_VERSION_1=y
FREETZ_OPENSSL_SHLIB_VERSION="1.0.0"
FREETZ_OPENSSL_LIBCRYPTO_EXTRA_LIBS="-ldl"
#
# OpenSSL configuration
#
# FREETZ_LIB_libcrypto_WITH_EC is not set
# FREETZ_LIB_libcrypto_WITH_RC4 is not set
# FREETZ_LIB_libcrypto_WITH_ZLIB is not set
FREETZ_OPENSSL_SMALL_FOOTPRINT=y
FREETZ_OPENSSL_CONFIG_DIR="/mod/etc/ssl"
# end of OpenSSL configuration
#
# PolarSSL -------------------------------
#
# FREETZ_LIB_libpolarssl12 is not set
# FREETZ_LIB_libpolarssl13 is not set
#
# SSH ------------------------------------
#
# FREETZ_LIB_libssh2 is not set
# end of Crypto & SSL
#
# Data compression
#
# FREETZ_LIB_liblz4 is not set
# FREETZ_LIB_liblzma is not set
FREETZ_LIB_liblzo2=y
FREETZ_LIB_libz=y
# end of Data compression
#
# Database
#
# FREETZ_LIB_libdb is not set
# FREETZ_LIB_libsqlite3 is not set
# end of Database
#
# File systems
#
#
# e2fsprogs libraries
#
# FREETZ_LIB_libblkid is not set
# FREETZ_LIB_libcom_err is not set
# FREETZ_LIB_libe2p is not set
# FREETZ_LIB_libext2fs is not set
# FREETZ_LIB_libss is not set
# FREETZ_LIB_libuuid is not set
# end of e2fsprogs libraries
# FREETZ_LIB_libfuse is not set
# FREETZ_LIB_libntfs is not set
# end of File systems
#
# GLib
#
# FREETZ_LIB_libglib_2 is not set
# FREETZ_LIB_libgio_2 is not set
# FREETZ_LIB_libgobject_2 is not set
# FREETZ_LIB_libgmodule_2 is not set
# FREETZ_LIB_libgthread_2 is not set
# end of GLib
#
# Graphics & fonts
#
# FREETZ_LIB_libfreetype is not set
# FREETZ_LIB_libart_lgpl_2 is not set
# FREETZ_LIB_libexif is not set
# FREETZ_LIB_libjpeg is not set
# FREETZ_LIB_liblept is not set
# FREETZ_LIB_libpng12 is not set
# FREETZ_LIB_libgd is not set
# FREETZ_LIB_libopenjpeg is not set
# FREETZ_LIB_libtiff is not set
# FREETZ_LIB_libtiffxx is not set
# FREETZ_LIB_libnetpbm is not set
# end of Graphics & fonts
#
# Multi precision arithmetic libs
#
# FREETZ_LIB_libgmp is not set
# FREETZ_LIB_libmpfr is not set
# FREETZ_LIB_libmpc is not set
# end of Multi precision arithmetic libs
#
# Multimedia
#
#
# Audio and video codecs
#
#
# Audio codecs
#
# FREETZ_LIB_libFLAC is not set
# FREETZ_LIB_libmad is not set
# FREETZ_LIB_libogg is not set
# FREETZ_LIB_libopus is not set
# FREETZ_LIB_libspeex is not set
# FREETZ_LIB_libspeexdsp is not set
# end of Audio codecs
#
# FFmpeg libraries
#
# FREETZ_LIB_libavcodec is not set
# FREETZ_LIB_libavdevice is not set
# FREETZ_LIB_libavfilter is not set
# FREETZ_LIB_libavformat is not set
# FREETZ_LIB_libavutil is not set
# FREETZ_LIB_libpostproc is not set
# FREETZ_LIB_libswresample is not set
# FREETZ_LIB_libswscale is not set
# end of FFmpeg libraries
#
# Video codecs
#
#
# Vorbis video codec ---------------------
#
# FREETZ_LIB_libvorbis is not set
# FREETZ_LIB_libvorbisenc is not set
# FREETZ_LIB_libvorbisfile is not set
# end of Video codecs
# end of Audio and video codecs
#
# ID3 tag reading libs
#
# FREETZ_LIB_libid3tag is not set
# FREETZ_LIB_libtag is not set
# end of ID3 tag reading libs
# end of Multimedia
#
# ncurses
#
FREETZ_LIB_libncurses=y
#
# terminfo database
#
#
# Select terminfo database entries to install (see help of 'Show all items')
#
FREETZ_SHARE_terminfo=y
# FREETZ_SHARE_terminfo_showall is not set
FREETZ_SHARE_terminfo_ansi=y
FREETZ_SHARE_terminfo_gnome=y
FREETZ_SHARE_terminfo_konsole=y
FREETZ_SHARE_terminfo_linux=y
FREETZ_SHARE_terminfo_putty=y
FREETZ_SHARE_terminfo_rxvt=y
FREETZ_SHARE_terminfo_screen=y
FREETZ_SHARE_terminfo_screenMINUSw=y
FREETZ_SHARE_terminfo_sun=y
FREETZ_SHARE_terminfo_vt100=y
FREETZ_SHARE_terminfo_vt102=y
FREETZ_SHARE_terminfo_vt102MINUSnsgr=y
FREETZ_SHARE_terminfo_vt102MINUSw=y
FREETZ_SHARE_terminfo_vt200=y
FREETZ_SHARE_terminfo_vt220=y
FREETZ_SHARE_terminfo_vt52=y
FREETZ_SHARE_terminfo_xterm=y
FREETZ_SHARE_terminfo_xtermMINUS256color=y
FREETZ_SHARE_terminfo_xtermMINUScolor=y
FREETZ_SHARE_terminfo_xtermMINUSxfree86=y
# end of terminfo database
# FREETZ_LIB_libform is not set
# FREETZ_LIB_libmenu is not set
# FREETZ_LIB_libpanel is not set
# end of ncurses
#
# Networking
#
#
# ATM ------------------------------------
#
# FREETZ_LIB_libatm is not set
#
# Bluetooth ------------------------------
#
# FREETZ_LIB_libbluetooth is not set
# FREETZ_LIB_libopenobex is not set
#
# ISDN & CAPI ----------------------------
#
# FREETZ_LIB_libcapi20 is not set
#
# Misc networking ------------------------
#
# FREETZ_LIB_libdnet is not set
# FREETZ_LIB_libgsm is not set
# FREETZ_LIB_libiksemel is not set
# FREETZ_LIB_libpcap is not set
# FREETZ_LIB_libmnl is not set
# FREETZ_LIB_libnet is not set
# FREETZ_LIB_liboping is not set
# FREETZ_LIB_libosip2 is not set
# FREETZ_LIB_libosipparser2 is not set
# FREETZ_LIB_libspandsp is not set
# FREETZ_LIB_libsrtp is not set
# end of Networking
#
# PJ Project
#
# FREETZ_LIB_libpj is not set
# FREETZ_LIB_libpjlib_util is not set
# FREETZ_LIB_libpjmedia is not set
# FREETZ_LIB_libpjmedia_audiodev is not set
# FREETZ_LIB_libpjmedia_codec is not set
# FREETZ_LIB_libpjmedia_videodev is not set
# FREETZ_LIB_libpjnath is not set
# FREETZ_LIB_libpjsip is not set
# FREETZ_LIB_libpjsip_simple is not set
# FREETZ_LIB_libpjsip_ua is not set
# FREETZ_LIB_libpjsua is not set
#
# 3rdparty libraries
#
# FREETZ_LIB_libg7221codec is not set
# FREETZ_LIB_libilbccodec is not set
# FREETZ_LIB_libmilenage is not set
# end of PJ Project
#
# Readline
#
# FREETZ_LIB_libreadline is not set
# FREETZ_LIB_libhistory is not set
# end of Readline
#
# Regular expressions
#
# FREETZ_LIB_libonig is not set
# FREETZ_LIB_libpcre is not set
# FREETZ_LIB_libpcreposix is not set
# end of Regular expressions
#
# uClibc
#
FREETZ_LIB_ld_uClibc=y
FREETZ_LIB_libcrypt=y
FREETZ_LIB_libdl=y
FREETZ_LIB_libm=y
FREETZ_LIB_libpthread=y
FREETZ_LIB_librt=y
# FREETZ_LIB_libthread_db is not set
FREETZ_LIB_libubacktrace=y
FREETZ_LIB_libuClibc=y
FREETZ_LIB_libutil=y
# end of uClibc
#
# USB & FTDI
#
# FREETZ_LIB_libusb_0 is not set
# FREETZ_LIB_libusb_1 is not set
# FREETZ_LIB_libftdi is not set
# end of USB & FTDI
#
# Web and WebDAV
#
# FREETZ_LIB_libcurl is not set
# FREETZ_LIB_libjansson is not set
# FREETZ_LIB_libjs is not set
# FREETZ_LIB_libneon is not set
# FREETZ_LIB_libserf is not set
# end of Web and WebDAV
#
# XML & XSLT
#
# FREETZ_LIB_libexpat is not set
# FREETZ_LIB_libxml2 is not set
# FREETZ_LIB_libxslt is not set
# FREETZ_LIB_libexslt is not set
# end of XML & XSLT