forked from HaleBob/freetz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.in
2100 lines (1781 loc) · 96.2 KB
/
Config.in
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
mainmenu "Freetz Configuration"
config FREETZ_HAVE_DOT_CONFIG
bool
default y
comment "User competence ------------------------"
choice
prompt "Level of user competence"
default FREETZ_USER_LEVEL_BEGINNER
help
Select your level of competence in regard to such aspects as:
- modifying firmware of embedded devices
- Linux based operating systems
- cross-compiling software
- tracking software/hardware problems down
The higher the selected level (beginner << advanced << expert)
the more options for customizing the firmware are shown.
Please select levels greater than beginner only
if you really need to and know what you're doing.
config FREETZ_USER_LEVEL_BEGINNER
bool "Beginner"
config FREETZ_USER_LEVEL_ADVANCED
bool "Advanced"
select FREETZ_SHOW_ADVANCED
config FREETZ_USER_LEVEL_EXPERT
bool "Expert"
select FREETZ_SHOW_ADVANCED
select FREETZ_SHOW_EXPERT
endchoice
config FREETZ_SHOW_ADVANCED
bool
config FREETZ_SHOW_EXPERT
bool
comment "Hardware/Firmware ----------------------"
choice
prompt "Hardware type"
default FREETZ_TYPE_7390
help
Select your box type here.
config FREETZ_TYPE_300IP
select FREETZ_AVM_VERSION_04_49
bool "300IP as Fon"
config FREETZ_TYPE_FON
select FREETZ_AVM_VERSION_04_33 if FREETZ_TYPE_LANG_DE
select FREETZ_AVM_VERSION_04_49 if ! FREETZ_TYPE_LANG_DE
bool "Fon"
config FREETZ_TYPE_WLAN
select FREETZ_AVM_VERSION_04_33 if FREETZ_TYPE_LANG_DE
select FREETZ_AVM_VERSION_04_49 if ! FREETZ_TYPE_LANG_DE
bool "Fon WLAN"
config FREETZ_TYPE_W501V
select FREETZ_AVM_VERSION_r7203
bool "Speedport W501V"
config FREETZ_TYPE_2170
select FREETZ_AVM_VERSION_04_57
bool "2170"
comment "WLAN"
config FREETZ_TYPE_3020
select FREETZ_AVM_VERSION_04_33
bool "3020 SL"
config FREETZ_TYPE_3030
select FREETZ_AVM_VERSION_04_33
bool "3030"
config FREETZ_TYPE_3130
select FREETZ_AVM_VERSION_04_33
bool "3130"
config FREETZ_TYPE_3131
select FREETZ_AVM_VERSION_04_57
bool "3131"
config FREETZ_TYPE_3170
select FREETZ_AVM_VERSION_04_57
bool "3170"
config FREETZ_TYPE_3270_V2
select FREETZ_AVM_VERSION_7270_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7270_05_51 if FREETZ_AVM_VERSION_05_5X
bool "3270 v2"
select FREETZ_TYPE_3270
config FREETZ_TYPE_3270_V3
select FREETZ_AVM_VERSION_7270_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7270_05_51 if FREETZ_AVM_VERSION_05_5X
bool "3270 v3"
select FREETZ_TYPE_3270
config FREETZ_TYPE_3370
select FREETZ_AVM_VERSION_3370_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
bool "3370"
config FREETZ_TYPE_3390
select FREETZ_AVM_VERSION_3370_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
bool "3390"
comment "Fon"
config FREETZ_TYPE_5010
select FREETZ_AVM_VERSION_04_40
bool "5010"
config FREETZ_TYPE_5050
select FREETZ_AVM_VERSION_04_30
bool "5050"
config FREETZ_TYPE_5124
select FREETZ_AVM_VERSION_04_76
bool "5124"
config FREETZ_TYPE_5140
select FREETZ_AVM_VERSION_04_67
bool "5140"
comment "LTE"
# config FREETZ_TYPE_6810
# select FREETZ_AVM_VERSION_3370_05_21 if FREETZ_AVM_VERSION_05_2X
# select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
# bool "6810 - EXPERIMENTAL"
config FREETZ_TYPE_6840
select FREETZ_AVM_VERSION_3370_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
bool "6840"
comment "Fon WLAN"
config FREETZ_TYPE_7050
select FREETZ_AVM_VERSION_04_33
bool "7050"
config FREETZ_TYPE_7112
select FREETZ_AVM_VERSION_04_87
bool "7112"
config FREETZ_TYPE_7113
select FREETZ_AVM_VERSION_04_80 if FREETZ_TYPE_LANG_EN
select FREETZ_AVM_VERSION_04_67 if FREETZ_TYPE_LANG_DE
bool "7113"
config FREETZ_TYPE_7140
select FREETZ_AVM_VERSION_04_33 if FREETZ_TYPE_LANG_DE
select FREETZ_AVM_VERSION_04_76 if FREETZ_TYPE_LANG_A_CH
select FREETZ_AVM_VERSION_04_67 if FREETZ_TYPE_LANG_EN
bool "7140"
config FREETZ_TYPE_7141
select FREETZ_AVM_VERSION_04_76
bool "7141"
config FREETZ_TYPE_7150
select FREETZ_AVM_VERSION_04_70
bool "7150"
config FREETZ_TYPE_7170
select FREETZ_AVM_VERSION_04_76 if FREETZ_TYPE_LANG_A_CH
select FREETZ_AVM_VERSION_04_80 if FREETZ_TYPE_LANG_EN
select FREETZ_AVM_VERSION_04_87 if FREETZ_TYPE_LANG_DE
bool "7170"
config FREETZ_TYPE_7240
select FREETZ_AVM_VERSION_7270_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7270_05_51 if FREETZ_AVM_VERSION_05_5X
bool "7240"
config FREETZ_TYPE_7270_V1
select FREETZ_TYPE_7270
bool "7270 v1"
config FREETZ_TYPE_7270_V2
select FREETZ_TYPE_7270
bool "7270 v2"
select FREETZ_TYPE_7270_16
config FREETZ_TYPE_7270_V3
select FREETZ_TYPE_7270
bool "7270 v3"
select FREETZ_TYPE_7270_16
config FREETZ_TYPE_7312
select FREETZ_AVM_VERSION_7330_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7330_05_50 if FREETZ_AVM_VERSION_05_5X
bool "7312"
config FREETZ_TYPE_7320
select FREETZ_AVM_VERSION_7330_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7330_05_50 if FREETZ_AVM_VERSION_05_5X
bool "7320"
config FREETZ_TYPE_7330_XL
select FREETZ_AVM_VERSION_7330_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7330_05_50 if FREETZ_AVM_VERSION_05_5X
bool "7330"
select FREETZ_TYPE_7330
config FREETZ_TYPE_7330_SL
select FREETZ_AVM_VERSION_7330_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7330_05_50 if FREETZ_AVM_VERSION_05_5X
bool "7330 SL"
select FREETZ_TYPE_7330
config FREETZ_TYPE_7340
select FREETZ_AVM_VERSION_7390_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7390_05_52 if FREETZ_AVM_VERSION_05_5X
bool "7340"
config FREETZ_TYPE_7360_XL
select FREETZ_AVM_VERSION_7360_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
bool "7360"
select FREETZ_TYPE_7360
config FREETZ_TYPE_7360_SL
select FREETZ_AVM_VERSION_7360_05_20 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7360_05_51 if FREETZ_AVM_VERSION_05_5X
bool "7360 SL"
select FREETZ_TYPE_7360
config FREETZ_TYPE_7390
select FREETZ_AVM_VERSION_7390_05_21 if FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7390_05_52 if FREETZ_AVM_VERSION_05_5X
bool "7390"
comment "VDSL"
config FREETZ_TYPE_7570
select FREETZ_AVM_VERSION_7270_04_86
bool "7570"
comment "Custom"
depends on FREETZ_SHOW_EXPERT
config FREETZ_TYPE_CUSTOM
bool "Custom"
depends on FREETZ_SHOW_EXPERT
select FREETZ_DL_OVERRIDE
endchoice # "Hardware type" #
config FREETZ_TYPE_7270
depends on \
FREETZ_TYPE_7270_V1 || \
FREETZ_TYPE_7270_V2 || \
FREETZ_TYPE_7270_V3
select FREETZ_AVM_VERSION_7270_04_86 if FREETZ_TYPE_7270_V1
select FREETZ_AVM_VERSION_7270_05_21 if FREETZ_TYPE_7270_16 && FREETZ_AVM_VERSION_05_2X
select FREETZ_AVM_VERSION_7270_05_51 if FREETZ_TYPE_7270_16 && FREETZ_AVM_VERSION_05_5X
bool
choice
prompt "Firmware language"
default FREETZ_TYPE_LANG_DE
config FREETZ_TYPE_LANG_DE
bool "de - deutsch"
depends on FREETZ_AVM_HAS_LANG_DE
config FREETZ_TYPE_LANG_A_CH
bool "a-ch - deutsch"
depends on FREETZ_AVM_HAS_LANG_A_CH
config FREETZ_TYPE_LANG_EN
bool "en - international"
depends on FREETZ_AVM_HAS_LANG_EN
config FREETZ_TYPE_LANG_IT
bool "it - italian"
depends on FREETZ_AVM_HAS_LANG_IT
endchoice # "Firmware language" #
choice
prompt "Firmware version"
default FREETZ_TYPE_FIRMWARE_05_5X
config FREETZ_TYPE_FIRMWARE_04_XX
bool "FRITZ!OS 04.xx"
select FREETZ_AVM_VERSION_04_XX
depends on FREETZ_AVM_HAS_FW4XX
config FREETZ_TYPE_FIRMWARE_05_2X
bool "FRITZ!OS 05.2x"
select FREETZ_AVM_VERSION_05_2X
depends on FREETZ_AVM_HAS_FW52X
config FREETZ_TYPE_FIRMWARE_05_5X
bool "FRITZ!OS 05.5x"
select FREETZ_AVM_VERSION_05_5X
depends on FREETZ_AVM_HAS_FW55X
config FREETZ_TYPE_FIRMWARE_LABOR
bool "FRITZ! Labor"
select FREETZ_AVM_VERSION_05_5X
depends on FREETZ_SHOW_ADVANCED && FREETZ_AVM_HAS_LABOR
help
Enable this to use an AVM Labor firmware as base for modding.
For more details see <http://www.avm.de/Labor/>.
NOTE: Firmware files have to be downloaded manually and unpacked
into dl/fw/ directory.
config FREETZ_TYPE_FIRMWARE_EWE
bool "EWE Edition"
select FREETZ_AVM_VERSION_05_2X if FREETZ_TYPE_7360_XL
select FREETZ_AVM_VERSION_05_5X if FREETZ_TYPE_7390
depends on FREETZ_AVM_HAS_FWEWE
help
http://www.ewe.de/privatkunden/service/hardware.php
http://download.ewe.de/avm/
endchoice # "Firmware version" #
config FREETZ_TYPE_FIRMWARE_FINAL
bool
default y
depends on !FREETZ_TYPE_FIRMWARE_LABOR
config FREETZ_TYPE_LANGUAGE
string
default "de" if FREETZ_TYPE_LANG_DE
default "a-ch" if FREETZ_TYPE_LANG_A_CH
default "en" if FREETZ_TYPE_LANG_EN
default "it" if FREETZ_TYPE_LANG_IT
config FREETZ_TYPE_ALIEN_HARDWARE
bool "Compile image for 'alien' hardware"
depends on \
FREETZ_TYPE_7170 || \
FREETZ_TYPE_7270 || \
FREETZ_TYPE_7330 || \
FREETZ_TYPE_7390 && FREETZ_TYPE_LANG_EN || \
FREETZ_TYPE_7570
default n
help
Enable this to compile the mod image for another hardware type
choice
prompt "Alien hardware type"
depends on FREETZ_TYPE_ALIEN_HARDWARE
# config FREETZ_TYPE_W500V_7150
# bool "Sinus W500V"
# depends on FREETZ_TYPE_7150
# select FREETZ_MODULE_jffs2 if ! FREETZ_REMOVE_JFFS2
# help
# Enable this to compile a mod image for T-Com Sinus W500V based
# on a 7150 image.
config FREETZ_TYPE_W701V_7170
bool "W701V"
depends on FREETZ_TYPE_7170 && FREETZ_TYPE_LANG_DE
select FREETZ_REMOVE_FTPD
select FREETZ_REMOVE_MEDIASRV
select FREETZ_REMOVE_PRINTSERV
select FREETZ_REMOVE_PRINTSERV_MODULE if ! FREETZ_MODULE_usblp
select FREETZ_REMOVE_SAMBA
help
Enable this to compile a mod image for T-Com Speedport W701V based
on a 7170 image.
config FREETZ_TYPE_W900V_7170
bool "W900V"
depends on FREETZ_TYPE_7170 && FREETZ_TYPE_LANG_DE
help
Enable this to compile a mod image for T-Com Speedport W900V based
on a 7170 image.
config FREETZ_TYPE_7570_IAD
bool "Alice IAD 7570"
depends on FREETZ_TYPE_7570 || (FREETZ_TYPE_7270 && FREETZ_TYPE_LANG_EN)
comment "Hint: Use replace kernel to get max filesystem size"
depends on \
( \
FREETZ_TYPE_7570_IAD || \
(FREETZ_TYPE_7270 && FREETZ_TYPE_LANG_EN) \
) && ! FREETZ_REPLACE_KERNEL
config FREETZ_TYPE_W920V_7570
bool "Speedport W920V"
depends on FREETZ_TYPE_7570 || (FREETZ_TYPE_7270 && FREETZ_TYPE_LANG_EN)
help
Enable this to compile a mod image for T-Com Speedport W920V based
on a 7570 image.
config FREETZ_TYPE_3170_7170
bool "3170"
depends on FREETZ_TYPE_7170
select FREETZ_REMOVE_VOIPD
select FREETZ_REMOVE_TELEPHONY
select FREETZ_REMOVE_CAPIOVERTCP
help
Enable this to compile a mod image for FritzBox FON WLAN 3170 based
on a 7170 image.
config FREETZ_TYPE_7112_7170
bool "7112"
depends on FREETZ_TYPE_7170
select FREETZ_REMOVE_FTPD
select FREETZ_REMOVE_MEDIASRV
select FREETZ_REMOVE_PRINTSERV
select FREETZ_REMOVE_PRINTSERV_MODULE if ! FREETZ_MODULE_usblp
select FREETZ_REMOVE_SAMBA
help
Enable this to compile a mod image for FritzBox Fon WLAN 7112 based
on a 7170 image.
config FREETZ_TYPE_7113_7170
bool "7113"
depends on FREETZ_TYPE_7170 && !FREETZ_TYPE_ANNEX_A
select FREETZ_REMOVE_FTPD
select FREETZ_REMOVE_MEDIASRV
select FREETZ_REMOVE_PRINTSERV
select FREETZ_REMOVE_PRINTSERV_MODULE if ! FREETZ_MODULE_usblp
select FREETZ_REMOVE_SAMBA
help
Enable this to compile a mod image for FritzBox Fon WLAN 7113 based
on a 7170 image.
WARNING: A 7113 has only 16MB RAM.
config FREETZ_TYPE_7140_7170
bool "7140"
depends on FREETZ_TYPE_7170
help
Enable this to compile a mod image for FritzBox FON WLAN 7140 based
on a 7170 image.
config FREETZ_TYPE_7141_7170
bool "7141"
depends on FREETZ_TYPE_7170
help
Enable this to compile a mod image for FritzBox FON WLAN 7141 based
on a 7170 image.
config FREETZ_TYPE_7240_7270
bool "7240"
depends on FREETZ_TYPE_7270_16
help
Enable this to compile a mod image for FritzBox FON WLAN 7240 based
on a 7270 image.
config FREETZ_TYPE_7270_7270
bool "7270 v1"
depends on FREETZ_TYPE_7270_V2
# select FREETZ_REPLACE_KERNEL # not necessary (#1665)
# select FREETZ_REMOVE_AVM_VPN
# select FREETZ_REMOVE_CAPIOVERTCP
# select FREETZ_REMOVE_NTFS
# select FREETZ_REMOVE_SAMBA
# select FREETZ_REMOVE_UMTSD
# select FREETZ_REMOVE_VOIPD
# select FREETZ_REMOVE_TELEPHONY
# select FREETZ_REMOVE_WEBDAV
help
Enable this to compile a mod image for FritzBox FON WLAN 7270 v1 based
on a 7270 v2 image.
Caution: To fit into 8MB ROM some AVM components (e.g. telephony) have
to be removed. Please use usbroot for a full featured image.
config FREETZ_TYPE_72702_72701
bool "7270 v2"
depends on FREETZ_TYPE_7270_V1 && FREETZ_REPLACE_KERNEL_AVAILABLE
help
Enable this to compile a mod image for FritzBox FON WLAN 7270 v2 based
on a 7270 v1 image.
config FREETZ_TYPE_7570_7270_MENUITEM
bool "7570"
depends on FREETZ_TYPE_7270 && FREETZ_TYPE_LANG_EN
help
Enable this to compile an alien image for FritzBox FON WLAN 7570 based
on a 7270 image.
config FREETZ_TYPE_7320_7330
bool "7320"
depends on FREETZ_TYPE_7330
help
Enable this to compile an alien image for FritzBox FON WLAN 7320 based
on a 7330 image.
config FREETZ_TYPE_7340_7390
bool "7340"
depends on FREETZ_TYPE_7390
help
Enable this to compile an alien image for FritzBox FON WLAN 7340 based
on a 7390 image.
config FREETZ_TYPE_IAD_3331_7170
bool "Alice IAD 3331"
depends on FREETZ_TYPE_7170 && FREETZ_TYPE_LANG_DE
select FREETZ_REMOVE_PIGLET_V1 if FREETZ_SHOW_ADVANCED
select FREETZ_ENFORCE_URLADER_SETTINGS
help
Enable this to compile a mod image for Alice IAD 3331 based
on a 7170 image.
The firmware_version has to be enforced, because this variable is unset
in the 7170_HN bootloader.
Initial flashing might only be possible via ./tools/push_firmware
endchoice # "Alien hardware type" #
config FREETZ_TYPE_7570_7270
bool
default y
depends on \
FREETZ_TYPE_7570_IAD || \
FREETZ_TYPE_W920V_7570 || \
FREETZ_TYPE_7570_7270_MENUITEM
help
helper for 7570 aliens
choice
prompt "Annex"
depends on FREETZ_AVM_HAS_ANNEX_A_AND_B
default FREETZ_TYPE_ANNEX_B
config FREETZ_TYPE_ANNEX_A
bool "A"
config FREETZ_TYPE_ANNEX_B
bool "B"
endchoice # prompt "Annex" #
comment "Original components --------------------"
comment "Hint: Select build toolchain if you want to enable IPv6 support"
depends on \
( \
FREETZ_AVM_HAS_IPV6 || \
(FREETZ_SHOW_ADVANCED && FREETZ_REPLACE_KERNEL_AVAILABLE) \
) && \
(FREETZ_TARGET_UCLIBC_0_9_28 && FREETZ_DOWNLOAD_TOOLCHAIN && !FREETZ_DL_TOOLCHAIN_OVERRIDE)
config FREETZ_TARGET_IPV6_SUPPORT
bool "IPv6 support"
depends on \
( \
FREETZ_AVM_HAS_IPV6 || \
(FREETZ_SHOW_ADVANCED && FREETZ_REPLACE_KERNEL_AVAILABLE) \
) && \
! (FREETZ_TARGET_UCLIBC_0_9_28 && FREETZ_DOWNLOAD_TOOLCHAIN && !FREETZ_DL_TOOLCHAIN_OVERRIDE)
select FREETZ_REPLACE_KERNEL if ! (FREETZ_AVM_HAS_IPV6)
select FREETZ_MODULE_ipv6 if ! (FREETZ_AVM_HAS_IPV6) && FREETZ_REPLACE_KERNEL
select FREETZ_BUSYBOX__IPV6_UTILS
default n
help
Copies the ipv6 kernel module to the firmware and enables ipv6 support
in uClibc and busybox.
Shows additional options for busybox and iptables and other packages.
To use IPv6 with Fritz!Box, at least the kernel, ucLibc and busybox
have to be recompiled with IPv6 enabled.
The toolchain will automatically be rebuild to achieve this.
It is also recommended to include the package iptables/ip6tables for
firewall settings.
if FREETZ_SHOW_ADVANCED
comment "Replace kernel (not available, no sources by AVM)"
depends on ! FREETZ_REPLACE_KERNEL_AVAILABLE
config FREETZ_REPLACE_KERNEL
bool "Replace kernel"
depends on FREETZ_REPLACE_KERNEL_AVAILABLE
# until http://freetz.org/ticket/1716 is fixed:
select FREETZ_REMOVE_KIDS if \
( \
FREETZ_TYPE_2170 || \
FREETZ_TYPE_3170 \
)
select FREETZ_MODULE_fuse if \
( \
FREETZ_AVM_VERSION_3370_05_21 || \
FREETZ_AVM_VERSION_7270_04_86 || \
FREETZ_AVM_VERSION_7270_05_21 || \
FREETZ_AVM_VERSION_7270_05_50 || \
FREETZ_AVM_VERSION_7270_05_51 || \
FREETZ_AVM_VERSION_7330_05_20 || \
FREETZ_AVM_VERSION_7330_05_50 || \
FREETZ_AVM_VERSION_7360_05_20 || \
FREETZ_AVM_VERSION_7360_05_50 || \
FREETZ_AVM_VERSION_7360_05_51 || \
FREETZ_AVM_VERSION_7390_05_21 || \
FREETZ_AVM_VERSION_7390_05_52 \
) && \
! (FREETZ_REMOVE_NTFS && FREETZ_REMOVE_WEBDAV)
select FREETZ_MODULE_jffs2 if \
! FREETZ_REMOVE_JFFS2 && \
( \
FREETZ_AVM_VERSION_7330_05_20 || \
FREETZ_AVM_VERSION_7330_05_50 || \
FREETZ_AVM_VERSION_7360_05_20 || \
FREETZ_AVM_VERSION_7360_05_50 || \
FREETZ_AVM_VERSION_7360_05_51 \
)
select FREETZ_MODULE_usbcore if \
FREETZ_KERNEL_LAYOUT_UR8 && FREETZ_AVM_VERSION_7270_04_86
select FREETZ_MODULE_msdos if \
! FREETZ_REMOVE_FAT && \
( \
FREETZ_AVM_VERSION_7270_05_21 || \
FREETZ_AVM_VERSION_7270_05_50 || \
FREETZ_AVM_VERSION_7270_05_51 \
)
select FREETZ_MODULE_vfat if \
! FREETZ_REMOVE_FAT && \
( \
FREETZ_AVM_VERSION_7270_05_21 || \
FREETZ_AVM_VERSION_7270_05_50 || \
FREETZ_AVM_VERSION_7270_05_51 \
)
default n
help
Replace AVM kernel with self-built kernel.
endif # FREETZ_SHOW_ADVANCED #
menu "SquashFS options"
visible if FREETZ_SHOW_EXPERT
comment "CAUTION: SquashFS block sizes >64 KB can cause an unstable box due to extensive memory usage"
depends on ! (FREETZ_SQUASHFS_BLOCKSIZE_ORIG || FREETZ_SQUASHFS_BLOCKSIZE_65536)
choice
prompt "SquashFS block size"
default FREETZ_SQUASHFS_BLOCKSIZE_65536
config FREETZ_SQUASHFS_BLOCKSIZE_ORIG
bool "original (usually 64 KB)"
help
Block size of the root filesystem. SquashFS 2.x can use block sizes
up to 64 KB, SquashFS 3.x (only available for kernel 2.6.19.2 or
with "replace kernel") up to 1024 KB. Bigger block sizes achieve
better compression ratios than smaller ones.
64 KB is the default for kernel 2.6 firmwares.
config FREETZ_SQUASHFS_BLOCKSIZE_65536
bool "64 KB"
help
Block size of the root filesystem. SquashFS 2.x can use block sizes
up to 64 KB, SquashFS 3.x (only available for kernel 2.6.19.2 or
with "replace kernel") up to 1024 KB. Bigger block sizes achieve
better compression ratios than smaller ones.
64 KB is the default for kernel 2.6 firmwares.
if FREETZ_REPLACE_KERNEL
config FREETZ_SQUASHFS_BLOCKSIZE_131072
bool "128 KB - EXPERIMENTAL"
help
Block size of the root filesystem. SquashFS 3.4 can use block sizes
up to 1MB but the Default used by Freetz is 64KB. SquashFS 3.4 which
is included in Kernel 2.6.32 has a default Block size of 128 KB.
config FREETZ_SQUASHFS_BLOCKSIZE_262144
bool "256 KB - EXPERIMENTAL"
config FREETZ_SQUASHFS_BLOCKSIZE_524288
bool "512 KB - EXPERIMENTAL"
config FREETZ_SQUASHFS_BLOCKSIZE_1048576
bool "1024 KB - EXPERIMENTAL"
endif
endchoice # "SquashFS block size" #
config FREETZ_SQUASHFS_BLOCKSIZE
int
default 65536 if FREETZ_SQUASHFS_BLOCKSIZE_65536
default 131072 if FREETZ_SQUASHFS_BLOCKSIZE_131072
default 262144 if FREETZ_SQUASHFS_BLOCKSIZE_262144
default 524288 if FREETZ_SQUASHFS_BLOCKSIZE_524288
default 1048576 if FREETZ_SQUASHFS_BLOCKSIZE_1048576
help
Numeric SquashFS block size in bytes
endmenu # SquashFS options #
config FREETZ_AVMPLUGINS_ENABLED
bool "Integrate AVM Plugins into image"
depends on FREETZ_TYPE_7270_V1
default n
help
This feature disables AVM's plugin download and handling.
You could integrate these plugins directly into the firmware image by
selecting them below. This saves some resources because plugins are not
copied into RAM nor mounted with loop-devices.
menu "Plugin selection"
depends on FREETZ_AVMPLUGINS_ENABLED
comment "Select plugin(s) for insertion"
config FREETZ_AVMPLUGINS_MEDIASRV
bool "MEDIASRV"
default n
help
Integrates UPNP Mediaserver
config FREETZ_AVMPLUGINS_MINI
bool "MINI"
default n
help
Integrates FRITZ! Mini support
config FREETZ_AVMPLUGINS_NTFS
bool "NTFS"
default n
help
Integrates NTFS filesystem support
Not recommended if you are using Freetz-NTFS!
config FREETZ_AVMPLUGINS_ONLINEPB
bool "Online Phone Book"
default n
help
Integrates Online Phone Book support
config FREETZ_AVMPLUGINS_SAMBA
bool "SAMBA"
depends on ! FREETZ_PACKAGE_SAMBA_SMBD
default n
help
Integrates AVM's Samba Fileserver
config FREETZ_AVMPLUGINS_TAM
bool "TAM"
default n
help
Integrates Telephone Answering Machine (TAM)
config FREETZ_AVMPLUGINS_WEBDAV
bool "WEBDAV"
depends on ! FREETZ_PACKAGE_DAVFS2 && ! FREETZ_REMOVE_WEBDAV
default n
help
Integrates AVM's webdav
endmenu # "Plugin selection" #
source patches/Config.in
comment "Additional components ------------------"
menu "Packages"
source make/Config.in
endmenu # "Package selection" #
menu "Shared libraries"
visible if FREETZ_SHOW_ADVANCED
source make/libs/Config.in
endmenu # "Shared libraries" #
source kernel/Config.in.kernel
comment "Kernel modules (not available, no sources by AVM)"
depends on ! FREETZ_REPLACE_MODULE_AVAILABLE
menu "Kernel modules"
visible if FREETZ_SHOW_ADVANCED
depends on FREETZ_REPLACE_MODULE_AVAILABLE
source kernel/Config.in.modules
endmenu # "Kernel modules" #
menu "Busybox applets"
visible if FREETZ_SHOW_ADVANCED
depends on FREETZ_REPLACE_BUSYBOX
source make/busybox/Config.in
endmenu # "Busybox applets" #
menu "External processing"
config EXTERNAL_ENABLED
bool "Enable external processing"
default n
help
Enable this to move (big) files out of the firmware-image onto
an attached USB device or a mounted network share like SMB or NFS.
-------------------------- WARNING ----------------------------------
Move all the files from build/modified/external to your choosen
directory on the box BEFORE you flash the reduced image!
-------------------------- WARNING ----------------------------------
Do NOT external files needed to boot up Freetz!
config EXTERNAL_DOWNLOADER
bool "Prepare files for Downloader"
default n
depends on EXTERNAL_ENABLED && FREETZ_PACKAGE_DOWNLOADER
help
Prepare files for Downloader package.
Downloader loads usualy files from a http or ftp server into the RAM of the box.
config EXTERNAL_LINKS
bool "Do not ignore symbolic links"
default n
depends on EXTERNAL_ENABLED
help
Allows externalisation of symbolic links.
config EXTERNAL_SUBDIRS
bool "Keep subdirectories"
default y
depends on EXTERNAL_ENABLED && !EXTERNAL_DOWNLOADER
help
Keep the original directory structure.
Not all packages are shown if you disable this.
config EXTERNAL_CREATEPAK
bool "Create file for upload" if ! EXTERNAL_DOWNLOADER
default y
depends on EXTERNAL_ENABLED && ! EXTERNAL_DOWNLOADER
help
Creates a file for upload with the webinterface
config EXTERNAL_OWN_FILES
string "own files"
default ""
depends on EXTERNAL_ENABLED && FREETZ_SHOW_ADVANCED
help
Put your own files/directories here (space separated)
source make/external.in
source kernel/external.in
endmenu # "External processing" #
comment "Mod customizations ---------------------"
menu "Web Interface"
choice
prompt "Freetz language"
default FREETZ_LANG_DE if FREETZ_TYPE_LANG_DE || FREETZ_TYPE_LANG_A_CH
default FREETZ_LANG_EN
config FREETZ_LANG_DE
bool "de - deutsch"
config FREETZ_LANG_EN
bool "en - english"
endchoice # "Freetz language" #
config FREETZ_LANG_STRING
string
default "de" if FREETZ_LANG_DE
default "en" if FREETZ_LANG_EN
config FREETZ_SECURITY_LEVEL
int "Freetz security level (0-2)"
default 1
help
There are several security levels.
0 : no restrictions
1 : only configuration files without shell commands might be edited
2 : no configuration files might be edited.
choice
prompt "Freetz style"
default FREETZ_STYLE_COLORED
help
Changes the style sheet file for Freetz web interface.
For example, look of the Freetz status-bars can be changed
from colored to grey by change of the Freetz style.
config FREETZ_STYLE_COLORED
bool "green status-bars"
config FREETZ_STYLE_GREY
bool "grey status-bars"
endchoice # "Freetz style" #
config FREETZ_STYLE
string
default "colored" if FREETZ_STYLE_COLORED
default "grey" if FREETZ_STYLE_GREY
menu "Freetz skins"
comment "CAUTION: You should select at least one skin."
depends on \
!FREETZ_SKIN_legacy && \
!FREETZ_SKIN_phoenix && \
!FREETZ_SKIN_newfreetz
config FREETZ_SKIN_legacy
bool "legacy"
default y
help
Main color blue, menu at right.
Size: about 12 kB (uncompressed)
config FREETZ_SKIN_newfreetz
bool "newfreetz"
default n
help
Main color green, menu at left.
Size: about 33 kB (uncompressed)
config FREETZ_SKIN_phoenix
bool "phoenix"
default n
help
Main color red, menu at top.
Size: about 15 kB (uncompressed)
endmenu # "Freetz skins" #
choice
prompt "Favicons"
default FREETZ_FAVICON_NONE
help
Adds small favicons to the document root.
config FREETZ_FAVICON_NONE
bool "none"
config FREETZ_FAVICON_ATOMPHIL
bool "atomphil's favicon"
config FREETZ_FAVICON_CUMA
bool "cuma's favicons"
config FREETZ_FAVICON_DSL123
bool "dsl123's favicons"
config FREETZ_FAVICON_HANSOLO
bool "han-solo's favicons"
endchoice # "Favicons" #
config FREETZ_FAVICON_STRING
string
default "none" if FREETZ_FAVICON_NONE
default "atomphil" if FREETZ_FAVICON_ATOMPHIL
default "cuma" if FREETZ_FAVICON_CUMA
default "dsl123" if FREETZ_FAVICON_DSL123
default "hansolo" if FREETZ_FAVICON_HANSOLO
choice
prompt "AVM tagging"
default FREETZ_TAGGING_NONE
help
Adds a tag to the AVM web-interface, so it is obvious to
everybody that this box was modified by Freetz.
config FREETZ_TAGGING_NONE
bool "none"
config FREETZ_TAGGING_CUMA
bool "cuma's tagging"
endchoice # "AVM tagging" #
config FREETZ_TAGGING_STRING
string
default "none" if FREETZ_TAGGING_NONE
default "cuma" if FREETZ_TAGGING_CUMA
endmenu # "Webif customization" #
menu "Additional image/box information"
visible if FREETZ_SHOW_ADVANCED
# TODO: invert logic
config FREETZ_REMOVE_BOX_INFO
bool "Remove BOX-Info page"