blob: 704c7a561d3194c1d6b1f541402153d49baac500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
# mark broken devices
config ADK_BROKEN
bool
config ADK_TARGET_WITH_USB
bool
config ADK_TARGET_WITH_PCI
bool
config ADK_TARGET_WITH_SSB
bool
config ADK_TARGET_WITH_MINIPCI
bool
config ADK_TARGET_WITH_VGA
bool
config ADK_TARGET_WITH_HDD
bool
config ADK_TARGET_WITH_INPUT
bool
config ADK_TARGET_WITH_LEDS
bool
config ADK_TARGET_WITH_PP
bool
config ADK_TARGET_WITH_CARDBUS
bool
config ADK_TARGET_WITH_RTC
bool
config ADK_TARGET_WITH_WATCHDOG
bool
config ADK_TARGET_WITH_DSL
bool
config ADK_TOOLCHAIN_ONLY
bool
config ADK_TARGET_NO_FPU
bool
config ADK_EABI
bool
config ADK_LINUX_64
bool
config ADK_NATIVE
tristate
config ADK_alix
tristate
config ADK_wrap
tristate
config ADK_arm_toolchain
tristate
config ADK_armel_toolchain
tristate
config ADK_mips_toolchain
tristate
config ADK_mipsel_toolchain
tristate
config ADK_ppc
tristate
config ADK_sparc
tristate
config ADK_sparc64
tristate
config ADK_arm_qemu
tristate
config ADK_mips_qemu
tristate
config ADK_mipsel_qemu
tristate
config ADK_mips64_qemu
tristate
config ADK_mips64el_qemu
tristate
config ADK_cris_qemu
tristate
config ADK_rb532
tristate
config ADK_rb4xx
tristate
config ADK_zaurus
tristate
config ADK_foxg20
tristate
config ADK_foxboard
tristate
config ADK_lemote
tristate
config ADK_brcm
tristate
config ADK_ag241
tristate
config ADK_wag54g
tristate
config ADK_x86_64
tristate
config ADK_x86
tristate
config ADK_ibmx40
boolean
config ADK_shuttle
boolean
config ADK_HW
string
default "ibmx40" if ADK_ibmx40
default "shuttle" if ADK_shuttle
config ADK_TARGET
string
default "alix" if ADK_alix
default "wrap" if ADK_wrap
default "brcm" if ADK_brcm
default "x86" if ADK_x86
default "x86_64" if ADK_x86_64
default "toolchain-arm" if ADK_arm_toolchain
default "toolchain-armel" if ADK_armel_toolchain
default "toolchain-mips" if ADK_mips_toolchain
default "toolchain-mipsel" if ADK_mipsel_toolchain
default "ppc" if ADK_ppc
default "sparc" if ADK_sparc
default "sparc64" if ADK_sparc64
default "qemu-arm" if ADK_arm_qemu
default "qemu-cris" if ADK_cris_qemu
default "qemu-mips" if ADK_mips_qemu
default "qemu-mips64" if ADK_mips64_qemu
default "qemu-mipsel" if ADK_mipsel_qemu
default "foxboard" if ADK_foxboard
default "foxg20" if ADK_foxg20
default "native" if ADK_NATIVE
default "rb532" if ADK_rb532
default "rb4xx" if ADK_rb4xx
default "zaurus" if ADK_arm
default "lemote" if ADK_lemote
default "wag54g" if ADK_wag54g
default "ag241" if ADK_ag241
config ADK_HARDWARE_QEMU
boolean
config ADK_CPU_SPARC_V8
boolean
config ADK_CPU_SPARC_V9
boolean
config ADK_CPU_I686
boolean
config ADK_CPU_PENTIUM_M
boolean
config ADK_CPU_AMDFAM10
boolean
config ADK_TARGET_CFLAGS
string
default "-march=i686" if ADK_CPU_I686
default "-march=pentium-m" if ADK_CPU_PENTIUM_M
default "-march=amdfam10" if ADK_CPU_AMDFAM10
default "-mcpu=v8" if ADK_CPU_SPARC_V8
default "-mcpu=v9" if ADK_CPU_SPARC_V9
# c library
config ADK_uclibc
tristate
config ADK_eglibc
tristate
config ADK_glibc
tristate
config ADK_LIBC
string
default "uclibc" if ADK_uclibc
default "eglibc" if ADK_eglibc
default "glibc" if ADK_glibc
default "native" if ADK_NATIVE
menu "Target system"
choice
prompt "Embedded Device or Emulator"
default ADK_LINUX_NATIVE
config ADK_LINUX_NATIVE
bool "Native platform"
select ADK_NATIVE
select ADK_TARGET_WITH_VGA
select ADK_TARGET_WITH_USB
depends on ADK_HOST_LINUX
help
Make a native build. Use host tools.
No toolchain will be created.
config ADK_LINUX_X86_ALIX
bool "PC Engines ALIX boards"
select ADK_x86
select ADK_alix
help
Support for Alix boards.
http://www.pcengines.ch
Status: stable
config ADK_LINUX_X86_WRAP
bool "PC Engines WRAP boards"
select ADK_x86
select ADK_wrap
select ADK_KERNEL_SCSI
select ADK_KERNEL_ATA
select ADK_KERNEL_BLK_DEV_SD
select ADK_KERNEL_EXT2_FS
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_MII
select ADK_TARGET_WITH_WATCHDOG
select ADK_TARGET_WITH_RTC
help
End of life.
http://www.pcengines.ch/
Status: stable
config ADK_LINUX_ARM_FOXG20
bool "Foxboard (FOXG20)"
select ADK_foxg20
select ADK_EABI
select ADK_KERNEL_NLS
select ADK_KERNEL_EXT2_FS
select ADK_KERNEL_USB
select ADK_KPACKAGE_KMOD_VFAT_FS
select ADK_PACKAGE_KMOD_USB_CONTROLLER
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_MII
select ADK_TARGET_WITH_USB
help
Support for Foxboard target (foxg20).
http://foxg20.acmesystems.it/doku.php
Status: stable
config ADK_LINUX_CRIS_FOXBOARD
bool "Foxboard (ETRAX LX100)"
select ADK_foxboard
select ADK_PACKAGE_KMOD_USB_CONTROLLER
select ADK_KERNEL_USB
select ADK_KERNEL_NLS
select ADK_KERNEL_NETDEVICES
select ADK_TARGET_WITH_USB
help
Support for Foxboard targets.
http://foxlx.acmesystems.it/
Status: stable
config ADK_LINUX_MIPS64_LEMOTE
bool "Lemote Subnotebook Yeeloong"
select ADK_lemote
select ADK_HARDWARE_YEELONG
select ADK_LINUX_64
help
Lemote Subnotebook.
http://www.lemote.com/english/index.html
http://www.tekmote.nl/
Status: testing
config ADK_LINUX_MIKROTIK
bool "Mikrotik Routerboards"
help
Support for Mikrotik Routerboards
http://www.mikrotik.com
http://www.routerboards.com
config ADK_LINUX_MIPS_AG241
bool "Linksys AG241v2"
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_MII
select ADK_PACKAGE_KMOD_SANGAM_ATM
select ADK_KPACKAGE_KMOD_ATM_BR2684
select ADK_PACKAGE_BR2684CTL
select ADK_TARGET_WITH_DSL
select ADK_TARGET_WITH_WATCHDOG
select ADK_ag241
help
Linksys AG241 DSL router.
(Texas Instruments AR7 platform)
Status: stable
config ADK_LINUX_MIPS_BRCM
bool "Broadcom BCM47xx based routers"
select ADK_brcm
select ADK_TARGET_WITH_SSB
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_MII
help
Broadcom bcm47xx based router.
Status: development
config ADK_LINUX_XSCALE_ZAURUS
bool "Zaurus SL-C3200"
select ADK_zaurus
select ADK_TARGET_NO_FPU
select ADK_TARGET_WITH_INPUT
depends on ADK_BROKEN
help
Support for Sharp Zaurus SL-C3200 (aka Terrier)
Status: development
config ADK_LINUX_QEMU
bool "Qemu Emulator"
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_MII
select ADK_KERNEL_NET_ETHERNET
select ADK_TARGET_WITH_INPUT
help
Support for Qemu Emulator
config ADK_LINUX_TOOLCHAIN
bool "Toolchain only support"
help
Toolchain only support
config ADK_LINUX_PPC
bool "ppc system"
select ADK_ppc
help
Support for powerpc systems.
config ADK_LINUX_SPARC
bool "sparc system"
select ADK_sparc
help
Support for sparc systems.
config ADK_LINUX_SPARC64
bool "sparc64 system"
select ADK_sparc64
help
Support for sparc64 systems.
config ADK_LINUX_X86
bool "x86 system"
select ADK_x86
help
Support for x86 systems.
config ADK_LINUX_X86_64
bool "x86_64 system"
select ADK_x86_64
help
Support for x86_64/amd64 systems.
endchoice
choice
prompt "Architecture"
depends on ADK_LINUX_TOOLCHAIN
config ADK_LINUX_ARM_TOOLCHAIN
bool "ARM BE Toolchain"
select ADK_arm_toolchain
select ADK_TARGET_NO_FPU
select ADK_EABI
select ADK_TOOLCHAIN_ONLY
help
Status: toolchain only
config ADK_LINUX_ARMEL_TOOLCHAIN
bool "ARM LE Toolchain"
select ADK_armel_toolchain
select ADK_TARGET_NO_FPU
select ADK_EABI
select ADK_TOOLCHAIN_ONLY
help
Status: toolchain only
config ADK_LINUX_MIPS_TOOLCHAIN
bool "MIPS BE Toolchain (32 Bit)"
select ADK_mips_toolchain
select ADK_TOOLCHAIN_ONLY
help
Status: toolchain only
config ADK_LINUX_MIPSEL_TOOLCHAIN
bool "MIPS EL Toolchain (32 Bit)"
select ADK_mipsel_toolchain
select ADK_TOOLCHAIN_ONLY
help
Status: toolchain only
endchoice
choice
prompt "Architecture"
depends on ADK_LINUX_QEMU
config ADK_LINUX_ARM_QEMU
bool "arm"
select ADK_arm_qemu
select ADK_EABI
select ADK_KERNEL_INPUT_KEYBOARD
select ADK_KERNEL_CRC32
help
Qemu support for ARM architecture.
Right now this is optimized for Zaurus PDA spitz.
Status: development
config ADK_LINUX_MIPS_QEMU
bool "mips (big endian)"
select ADK_mips_qemu
help
Qemu support for MIPS BE architecture.
Status: stable
config ADK_LINUX_MIPSEL_QEMU
bool "mipsel (little endian)"
select ADK_mipsel_qemu
help
Qemu support for MIPS LE architecture.
Status: stable
config ADK_LINUX_MIPS64_QEMU
bool "mips64 (big endian)"
select ADK_mips64_qemu
select ADK_LINUX_64
depends on ADK_BROKEN
help
Qemu support for MIPS64 BE architecture.
Status: development
config ADK_LINUX_MIPS64EL_QEMU
bool "mips64 (little endian)"
select ADK_mips64el_qemu
select ADK_LINUX_64
depends on ADK_BROKEN
help
Qemu support for MIPS64 LE architecture.
Status: development
config ADK_LINUX_CRIS_QEMU
bool "cris"
select ADK_cris_qemu
depends on ADK_BROKEN
help
Qemu support for CRISv32 architecture.
config ADK_LINUX_X86_64_QEMU
bool "x86_64"
select ADK_x86_64_qemu
select ADK_LINUX_64
select ADK_KERNEL_NETDEV_1000
select ADK_KPACKAGE_KMOD_E1000
select ADK_KERNEL_INPUT_KEYBOARD
select ADK_KERNEL_SCSI
select ADK_KERNEL_ATA
select ADK_KERNEL_BLK_DEV_SD
select ADK_TARGET_WITH_VGA
help
Qemu support for x86_64 architecture.
Status: stable
endchoice
source "target/Config.in.alix"
source "target/Config.in.ppc"
source "target/Config.in.ppc64"
source "target/Config.in.sparc"
source "target/Config.in.sparc64"
source "target/Config.in.x86"
source "target/Config.in.x86_64"
choice
prompt "Routerboard model"
default ADK_LINUX_MIPS_RB532
depends on ADK_LINUX_MIKROTIK
config ADK_LINUX_MIPS_RB4XX
bool "Mikrotik Routerboard 411/433"
select ADK_rb4xx
select ADK_KERNEL_MISC_FILESYSTEMS
select ADK_KERNEL_YAFFS_FS
select ADK_KERNEL_YAFFS_YAFFS2
select ADK_KERNEL_YAFFS_AUTO_YAFFS2
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NETDEV_1000
select ADK_KERNEL_NET_ETHERNET
select ADK_TARGET_WITH_MINIPCI
select ADK_TARGET_WITH_WATCHDOG
help
Support for Mikrotik RB411/RB433.
Status: stable
config ADK_LINUX_MIPS_RB532
bool "Mikrotik Routerboard 532"
select ADK_rb532
select ADK_KERNEL_MISC_FILESYSTEMS
select ADK_KERNEL_YAFFS_FS
select ADK_KERNEL_YAFFS_YAFFS2
select ADK_KERNEL_YAFFS_AUTO_YAFFS2
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_PCI
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_MII
select ADK_KERNEL_ATA
select ADK_KERNEL_BLK_DEV_SD
select ADK_KERNEL_SCSI
select ADK_KERNEL_EXT2_FS
select ADK_TARGET_WITH_MINIPCI
select ADK_TARGET_WITH_WATCHDOG
help
Support for Mikrotik RB532.
Status: stable
endchoice
choice
prompt "Device model"
default ADK_LINUX_CRIS_FOXBOARD_CLASSIC
depends on ADK_LINUX_CRIS_FOXBOARD
config ADK_LINUX_CRIS_FOXBOARD_CLASSIC
bool "Foxboard classic (4x16)"
help
Foxboard classic with red board.
(4 MB flash size and 16 MB RAM)
config ADK_LINUX_CRIS_FOXBOARD_LX
bool "Foxboard LX (8x32)"
help
Latest Foxboard with green board.
(8 MB flash size and 32 MB RAM)
endchoice
source "target/linux/config/Config.in.kernel"
choice
prompt "Target C library"
depends on ! ADK_NATIVE
config ADK_TARGET_LIB_UCLIBC
bool "uClibc embedded C library"
# broken, because of 16kB pagesize
depends on !ADK_LINUX_MIPS64_LEMOTE && \
!ADK_LINUX_SPARC64
select ADK_uclibc
help
http://uclibc.org
config ADK_TARGET_LIB_EGLIBC
bool "Embedded GNU C library"
select ADK_eglibc
depends on ADK_LINUX_QEMU || \
ADK_LINUX_PPC || \
ADK_LINUX_SPARC || \
ADK_LINUX_SPARC64 || \
ADK_LINUX_X86 || \
ADK_LINUX_X86_64 || \
ADK_LINUX_ARM_FOXG20 || \
ADK_LINUX_X86_ALIX || \
ADK_LINUX_X86_WRAP || \
ADK_LINUX_MIPS_RB4XX || \
ADK_LINUX_MIPS_RB532 || \
ADK_LINUX_MIPS64_LEMOTE || \
ADK_LINUX_TOOLCHAIN
help
http://www.eglibc.org
config ADK_TARGET_LIB_GLIBC
bool "GNU C library"
select ADK_glibc
depends on ADK_LINUX_QEMU || \
ADK_LINUX_PPC || \
ADK_LINUX_SPARC || \
ADK_LINUX_SPARC64 || \
ADK_LINUX_X86 || \
ADK_LINUX_X86_64 || \
ADK_LINUX_ARM_FOXG20 || \
ADK_LINUX_X86_ALIX || \
ADK_LINUX_X86_WRAP || \
ADK_LINUX_MIPS_RB532 || \
ADK_LINUX_MIPS_RB4XX || \
ADK_LINUX_MIPS64_LEMOTE || \
ADK_LINUX_TOOLCHAIN
help
http://www.gnu.org/libc
endchoice
config ADK_TARGET_SUFFIX
string
default "gnueabi" if (ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC) && ADK_EABI
default "gnu" if (ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC) && !ADK_EABI
default "uclibcgnueabi" if ADK_TARGET_LIB_UCLIBC && ADK_EABI
default "uclibc" if ADK_TARGET_LIB_UCLIBC && !ADK_EABI
choice
prompt "Target Firmware type"
depends on !ADK_TOOLCHAIN_ONLY
default ADK_TARGET_ROOTFS_ARCHIVE
config ADK_TARGET_ROOTFS_INITRAMFS
bool "initramfs filesystem"
depends on \
ADK_LINUX_X86 || \
ADK_LINUX_X86_64 || \
ADK_LINUX_PPC || \
ADK_LINUX_SPARC || \
ADK_LINUX_X86_ALIX || \
ADK_LINUX_QEMU || \
ADK_LINUX_NATIVE || \
ADK_LINUX_MIPS64_LEMOTE
select ADK_KERNEL_BLK_DEV_INITRD
help
create an read-only initramfs system.
config ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK
bool "initramfs filesystem included into kernel image"
select ADK_LINUX_INITRAMFS_BUILTIN
depends on \
ADK_LINUX_X86_ALIX || \
ADK_LINUX_PPC || \
ADK_LINUX_SPARC || \
ADK_LINUX_QEMU || \
ADK_LINUX_X86 || \
ADK_LINUX_X86_64 || \
ADK_LINUX_NATIVE || \
ADK_LINUX_MIPS64_LEMOTE
help
create an read-only initramfs system.
config ADK_TARGET_ROOTFS_SQUASHFS
bool "Compressed read-only root filesystem (squashfs)"
select ADK_KERNEL_SQUASHFS
depends on \
ADK_LINUX_CRIS_FOXBOARD || \
ADK_LINUX_MIPS_AG241
help
highly compressed read-only filesystem for flash.
config ADK_TARGET_ROOTFS_YAFFS
bool "YAFFS2 rootfilesystem (NAND)"
select ADK_KERNEL_MISC_FILESYSTEMS
select ADK_KERNEL_YAFFS_FS
select ADK_KERNEL_YAFFS_YAFFS2
depends on \
ADK_LINUX_MIPS_RB532 || \
ADK_LINUX_MIPS_RB4XX
help
Root filesystem on NAND.
config ADK_TARGET_ROOTFS_NFSROOT
bool "NFS root"
depends on \
ADK_LINUX_CRIS_FOXBOARD || \
ADK_LINUX_ARM_FOXG20 || \
ADK_LINUX_X86_ALIX || \
ADK_LINUX_X86_WRAP || \
ADK_LINUX_MIPS_BRCM || \
ADK_LINUX_MIPS_RB532 || \
ADK_LINUX_MIPS_RB4XX || \
ADK_LINUX_MIPS_AG241 || \
ADK_LINUX_MIPS64_LEMOTE
select ADK_KERNEL_SUNRPC
select ADK_KERNEL_NFS_FS
select ADK_KERNEL_NFS_V3
select ADK_KERNEL_ROOT_NFS
select ADK_KERNEL_NFS_COMMON
select ADK_KERNEL_IP_PNP
select ADK_KERNEL_IP_PNP_DHCP
help
Root filesystem mounted via NFS. (DHCP)
config ADK_TARGET_ROOTFS_USB
bool "Boot from USB stick"
select ADK_KERNEL_NLS
select ADK_KERNEL_SCSI
select ADK_KERNEL_BLK_DEV_SD
select ADK_KERNEL_USB
select ADK_KERNEL_USB_EHCI_HCD
select ADK_KERNEL_USB_UHCI_HCD
select ADK_KERNEL_USB_STORAGE
select ADK_KERNEL_EXT2_FS
depends on ADK_LINUX_X86 || ADK_LINUX_X86_64
depends on !ADK_HARDWARE_QEMU
help
Boot system from USB stick.
config ADK_TARGET_ROOTFS_EXT2_BLOCK
bool "read-write filesystem for block devices with ext2"
depends on ADK_LINUX_X86_ALIX || \
ADK_LINUX_X86_WRAP || \
ADK_LINUX_ARM_FOXG20 || \
ADK_LINUX_MIPS_RB532
select ADK_KERNEL_EXT2_FS
select ADK_KERNEL_SCSI
help
Use this option if you have a compact flash or mmc/sd card
reader inside your hardware and want to boot from it.
config ADK_TARGET_ROOTFS_ARCHIVE
bool "Archive usable for different filesystems"
depends on \
ADK_LINUX_NATIVE || \
ADK_LINUX_PPC || \
ADK_LINUX_SPARC || \
ADK_LINUX_QEMU || \
ADK_LINUX_XSCALE_ZAURUS || \
ADK_LINUX_X86 || \
ADK_LINUX_MIPS64_LEMOTE || \
ADK_LINUX_X86_64
help
Use this option if your root filesystem is ext2/ext3/ext4/xfs.
config ADK_TARGET_ROOTFS_ENCRYPTED
bool "Encrypted read-write root filesystem"
select ADK_LINUX_INITRAMFS_BUILTIN
select ADK_PACKAGE_CRYPTINIT
select ADK_KERNEL_BLK_DEV_DM
select ADK_KERNEL_DM_CRYPT
select ADK_KERNEL_CRYPTO_AES
select ADK_KERNEL_CRYPTO_CBC
select ADK_KERNEL_CRYPTO_SHA256
select ADK_KERNEL_XFS_FS
depends on ADK_LINUX_MIPS64_LEMOTE || \
ADK_LINUX_X86 || ADK_LINUX_X86_64
depends on !ADK_HARDWARE_QEMU
help
Use this option if you want an encrypted rootfs.
Default is XFS filesystem. Use following commands to setup
your hard disk, after booting via NFS or USB.
Create at least three partitions with fdisk
/dev/sda1 (ext2)
/dev/sda2 (encrypted root)
/dev/sda3 (swap)
mkdir /mnt/{boot,root}
cryptsetup luksFormat /dev/sda2
cryptsetup luksOpen /dev/sda2 root
cryptsetup luksFormat /dev/sda3
cryptsetup luksOpen /dev/sda3 swap
mkswap /dev/mapper/swap
mkfs.xfs /dev/mapper/root
mount /dev/mapper/root /mnt/root
tar xzvf lemote-mips-encryptedroot.tar.gz -C /mnt/root
mount /dev/sda1 /mnt/boot
mkdir /mnt/boot/boot
cp lemote-mips-kernel /mnt/boot/boot
mv /mnt/root/boot/boot.cfg /mnt/boot/boot
cd /mnt/root ; mknod -m 644 console c 5 1
endchoice
choice
prompt "Compression method for initramfs and kernel"
depends on ADK_TARGET_ROOTFS_INITRAMFS || ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK
config ADK_TARGET_INITRAMFS_COMPRESSION_LZMA
boolean
prompt "lzma"
select ADK_KERNEL_RD_LZMA
select ADK_KERNEL_KERNEL_LZMA
help
Select LZMA compression.
config ADK_TARGET_INITRAMFS_COMPRESSION_GZIP
boolean
prompt "gzip"
select ADK_KERNEL_RD_GZIP
select ADK_KERNEL_KERNEL_GZIP
help
Select gzip compression.
config ADK_TARGET_INITRAMFS_COMPRESSION_BZIP2
boolean
prompt "bzip2"
select ADK_KERNEL_RD_BZIP2
select ADK_KERNEL_KERNEL_BZIP2
help
Select BZIP2 compression.
#config ADK_TARGET_INITRAMFS_COMPRESSION_LZO
# boolean
# prompt "lzo"
# select ADK_KERNEL_RD_LZO
# select ADK_KERNEL_KERNEL_LZO
# help
# Select LZO compression.
endchoice
choice
prompt "Compression method for Kernel"
depends on !(ADK_TARGET_ROOTFS_INITRAMFS || ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK || ADK_TOOLCHAIN_ONLY || ADK_LINUX_ARM_FOXG20 || ADK_LINUX_ARM_QEMU )
config ADK_TARGET_KERNEL_COMPRESSION_LZMA
boolean
prompt "lzma"
select ADK_KERNEL_KERNEL_LZMA
help
Select LZMA compression for Kernel.
config ADK_TARGET_KERNEL_COMPRESSION_GZIP
boolean
prompt "gzip"
select ADK_KERNEL_KERNEL_GZIP
help
Select gzip compression for Kernel.
config ADK_TARGET_KERNEL_COMPRESSION_BZIP2
boolean
prompt "bzip2"
select ADK_KERNEL_KERNEL_BZIP2
help
Select BZIP2 compression for Kernel.
config ADK_TARGET_KERNEL_COMPRESSION_LZO
boolean
prompt "lzo"
select ADK_KERNEL_KERNEL_LZO
help
Select LZO compression for Kernel.
endchoice
config ADK_COMPRESSION_TOOL
string
default "gzip -n9" if ADK_TARGET_INITRAMFS_COMPRESSION_GZIP
default "bzip2" if ADK_TARGET_INITRAMFS_COMPRESSION_BZIP2
default "lzma -9" if ADK_TARGET_INITRAMFS_COMPRESSION_LZMA
default "lzop" if ADK_TARGET_INITRAMFS_COMPRESSION_LZO
help
choice
prompt "Root filesystem type"
depends on ADK_TARGET_ROOTFS_ARCHIVE
default ADK_TARGET_ROOT_EXT2_FS
config ADK_TARGET_ROOT_EXT2
boolean
prompt "EXT2 filesystem"
select ADK_KERNEL_EXT2_FS
help
Compile EXT2 filesystem into kernel and use it as root filesystem.
config ADK_TARGET_ROOT_EXT3
boolean
prompt "EXT3 filesystem"
select ADK_KERNEL_EXT3_FS
help
Compile EXT3 filesystem into kernel and use it as root filesystem.
config ADK_TARGET_ROOT_EXT4
boolean
prompt "EXT4 filesystem"
select ADK_KERNEL_EXT4_FS
help
Compile EXT4 filesystem into kernel and use it as root filesystem.
config ADK_TARGET_ROOT_XFS
boolean
prompt "XFS filesystem"
select ADK_KERNEL_XFS_FS
help
Compile XFS filesystem into kernel and use it as root filesystem.
endchoice
config ADK_TARGET_ROOTFS
string
default "xfs" if ADK_TARGET_ROOT_XFS
default "ext2" if ADK_TARGET_ROOT_EXT2
default "ext3" if ADK_TARGET_ROOT_EXT3
default "ext4" if ADK_TARGET_ROOT_EXT4
help
config ADK_PACKAGE_SUFFIX
string
default "ipk" if ADK_TARGET_PACKAGE_IPKG
default "tar.gz" if ADK_TARGET_PACKAGE_TGZ
help
choice
prompt "Package backend format"
default ADK_TARGET_PACKAGE_IPKG
config ADK_TARGET_PACKAGE_IPKG
boolean
prompt "ipkg package format"
select BUSYBOX_IPKG
help
Create ipkg packages and use ipkg package management on
the target.
config ADK_TARGET_PACKAGE_TGZ
boolean
prompt "tar archive (no package manager)"
help
Create compressed tar archives of packages.
Pre- and post install scripts will be executed in the target
directory. There will be no package manager installed onto the target.
endchoice
endmenu
|