forked from robbat2/genkernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_cmdline.sh
executable file
·942 lines (938 loc) · 33.2 KB
/
gen_cmdline.sh
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
#!/bin/bash
# $Id$
longusage() {
echo "Gentoo Linux Genkernel ${GK_V}"
echo
echo "Usage: "
echo " genkernel [options] action"
echo
echo "Available Actions: "
echo " all Build all steps"
echo " bzImage Build only the kernel"
echo " initramfs Build only the ramdisk/initramfs"
echo " kernel Build only the kernel and modules"
echo " ramdisk Build only the ramdisk/initramfs"
echo
echo "Available Options: "
echo " Configuration settings"
echo " --config=<file> genkernel configuration file to use"
echo " Debug settings"
echo " --loglevel=<0-5> Debug Verbosity Level"
echo " --logfile=<outfile> Output file for debug info"
echo " --color Output debug in color"
echo " --no-color Do not output debug in color"
echo " --cleanup Clean up temporary directories on exit"
echo " --no-cleanup Do not remove any temporary directories on exit"
echo " Kernel Configuration settings"
echo " --menuconfig Run menuconfig after oldconfig"
echo " --no-menuconfig Do not run menuconfig after oldconfig"
echo " --nconfig Run nconfig after oldconfig"
echo " --no-nconfig Do not run nconfig after oldconfig"
echo " --gconfig Run gconfig after oldconfig"
echo " --no-gconfig Don't run gconfig after oldconfig"
echo " --xconfig Run xconfig after oldconfig"
echo " --no-xconfig Don't run xconfig after oldconfig"
echo " --save-config Save the configuration to /etc/kernels"
echo " --no-save-config Don't save the configuration to /etc/kernels"
echo " --hyperv Enable Microsoft Hyper-V kernel options in kernel"
echo " --no-hyperv Don't enable Microsoft Hyper-V kernel options in kernel"
echo " --microcode=(all|amd|intel)"
echo " Enable early microcode support in kernel configuration,"
echo " 'all' for all (default), 'amd' for AMD and 'intel' for"
echo " Intel CPU types"
echo " --no-microcode Don't enable early microcode support in kernel configuration"
echo " --virtio Enable VirtIO kernel options in kernel"
echo " --no-virtio Don't enable VirtIO kernel options in kernel"
echo " Kernel Compile settings"
echo " --oldconfig Implies --no-clean and runs a 'make oldconfig'"
echo " --no-oldconfig Do not run 'make oldconfig' before compilation"
echo " --clean Run 'make clean' before compilation"
echo " --no-clean Do not run 'make clean' before compilation"
echo " --mrproper Run 'make mrproper' before compilation"
echo " --no-mrproper Do not run 'make mrproper' before compilation"
echo " --splash Install framebuffer splash support into initramfs"
echo " --no-splash Do not install framebuffer splash"
echo " --install Install the kernel after building"
echo " --no-install Do not install the kernel after building"
echo " --symlink Manage symlinks in /boot for installed images"
echo " --no-symlink Do not manage symlinks"
echo " --ramdisk-modules Copy required modules to the initramfs"
echo " --no-ramdisk-modules Don't copy any modules to the initramfs"
echo " --all-ramdisk-modules Copy all kernel modules to the initramfs"
echo " --module-rebuild Automatically run 'emerge @module-rebuild' when"
echo " necessary (and possible)"
echo " --no-module-rebuild Don't automatically run 'emerge @module-rebuild'"
echo " --module-rebuild-cmd=<...>"
echo " Overwrite default --module-rebuild command"
echo " --callback=<...> Run the specified arguments after the"
echo " kernel and modules have been compiled"
echo " --static Build a static (monolithic kernel)"
echo " --no-static Do not build a static (monolithic kernel)"
echo " Kernel settings"
echo " --kerneldir=<dir> Location of the kernel sources"
echo " --kernel-append-localversion=<...>"
echo " Appends value to genkernel's KERNEL_LOCALVERSION option"
echo " --kernel-config=<file|default>"
echo " Kernel configuration file to use for compilation; Use"
echo " 'default' to explicitly start from scratch using"
echo " genkernel defaults"
echo " --kernel-localversion=<...>"
echo " Set kernel CONFIG_LOCALVERSION, use special value"
echo " 'UNSET' to unset any set LOCALVERSION"
echo " --kernel-modules-prefix=<dir>"
echo " Prefix to kernel module destination, modules"
echo " will be installed in <prefix>/lib/modules"
echo " Low-Level Compile settings"
echo " --cross-compile=<target-triplet>"
echo " Target triple (i.e. aarch64-linux-gnu) to build for"
echo " --kernel-ar=<archiver> Archiver to use for kernel"
echo " --kernel-as=<assembler> Assembler to use for kernel"
echo " --kernel-cc=<compiler> Compiler to use for kernel (e.g. distcc)"
echo " --kernel-ld=<linker> Linker to use for kernel"
echo " --kernel-make=<makeprg> GNU Make to use for kernel"
echo " --kernel-nm=<nm> NM utility to use for kernel"
echo " --kernel-objcopy=<objcopy> OBJCOPY utility to use for kernel"
echo " --kernel-objdump=<objdump> OBJDUMP utility to use for kernel"
echo " --kernel-ranlib=<ranlib> RANLIB utility to use for kernel"
echo " --kernel-readelf=<readelf> READELF utility to use for kernel"
echo " --kernel-strip=<strip> STRIP utility to use for kernel"
echo " --kernel-target=<t> Override default make target (bzImage)"
echo " --kernel-binary=<path> Override default kernel binary path (arch/foo/boot/bar)"
echo " --kernel-outputdir=<path>"
echo " Save output files outside the source tree"
echo " --utils-ar=<archiver> Archiver to use for utils"
echo " --utils-as=<assembler> Assembler to use for utils"
echo " --utils-cc=<compiler> C Compiler to use for utilities"
echo " --utils-cxx=<compiler> C++ Compiler to use for utilities"
echo " --utils-cflags=<cflags> C compiler flags used to compile utilities"
echo " --utils-ld=<linker> Linker to use for utils"
echo " --utils-make=<makeprog> GNU Make to use for utils"
echo " --utils-nm=<nm> NM utility to use for utils"
echo " --utils-objcopy=<objcopy> OBJCOPY utility to use for utils"
echo " --utils-objdump=<objdump> OBJDUMP utility to use for utils"
echo " --utils-ranlib=<ranlib> RANLIB utility to use for utils"
echo " --utils-readelf=<readelf> READELF utility to use for utils"
echo " --utils-strip=<strip> STRIP utility to use for utils"
echo " --makeopts=<makeopts> Make options such as -j2, etc ..."
echo " --mountboot Mount BOOTDIR automatically if mountable"
echo " --no-mountboot Don't mount BOOTDIR automatically"
echo " --bootdir=<dir> Set the location of the boot-directory, default is /boot"
echo " --modprobedir=<dir> Set the location of the modprobe.d-directory, default is /etc/modprobe.d"
echo " --nice Run the kernel make at the default nice level (10)"
echo " --nice=<0-19> Run the kernel make at the selected nice level"
echo " --no-nice Don't be nice while running the kernel make"
echo " Initialization"
echo " --splash=<theme> Enable framebuffer splash using <theme>"
echo " --splash-res=<res> Select splash theme resolutions to install"
echo " --splash=<theme> Enable framebuffer splash using <theme>"
echo " --splash-res=<res> Select splash theme resolutions to install"
echo " --do-keymap-auto Forces keymap selection at boot"
echo " --keymap Enables keymap selection support"
echo " --no-keymap Disables keymap selection support"
echo " --bcache Include block layer cache (bcache) support"
echo " --no-bcache Exclude block layer cache (bcache) support"
echo " --lvm Include LVM support"
echo " --no-lvm Exclude LVM support"
echo " --mdadm Include MDADM/MDMON support"
echo " --no-mdadm Exclude MDADM/MDMON support"
echo " --mdadm-config=<file> Use file as mdadm.conf in initramfs"
echo " --microcode-initramfs Prepend early microcode to initramfs"
echo " --no-microcode-initramfs"
echo " Don't prepend early microcode to initramfs"
echo " --nfs Include NFS support"
echo " --no-nfs Exclude NFS support"
echo " --dmraid Include DMRAID support"
echo " --no-dmraid Exclude DMRAID support"
echo " --e2fsprogs Include e2fsprogs"
echo " --no-e2fsprogs Exclude e2fsprogs"
echo " --xfsprogs Include xfsprogs"
echo " --no-xfsprogs Exclude xfsprogs"
echo " --zfs Include ZFS support (enabled by default if rootfs is ZFS)"
echo " --no-zfs Exclude ZFS support"
echo " --btrfs Include Btrfs support (enabled by default if rootfs is Btrfs)"
echo " --no-btrfs Exclude Btrfs support"
echo " --multipath Include Multipath support"
echo " --no-multipath Exclude Multipath support"
echo " --iscsi Include iSCSI support"
echo " --no-iscsi Exclude iSCSI support"
echo " --sandbox Enable sandbox-ing when building initramfs"
echo " --no-sandbox Disable sandbox-ing when building initramfs"
echo " --ssh Include SSH (dropbear) support"
echo " --no-ssh Exclude SSH (dropbear) support"
echo " --ssh-authorized-keys-file=<file>"
echo " Specifies a user created authorized_keys file"
echo " --ssh-host-keys=(create|create-from-host|runtime)"
echo " Use host keys from /etc/dropbear, but CREATE (default) new host key(s)"
echo " if missing, CREATE host key(s) FROM current HOST running genkernel"
echo " (not recommended) or don't embed any host key in initramfs and"
echo " generate at RUNTIME (dropbear -R)"
echo " --boot-font=(current|<file>|none)"
echo " Embed CURRENT active console font from host running genkernel"
echo " or specified PSF font file into initramfs and activate early on boot."
echo " Use NONE (default) to not embed any PSF file."
echo " --bootloader=(grub|grub2)"
echo " Add new kernel to GRUB (grub) or GRUB2 (grub2) bootloader"
echo " --no-bootloader Skip bootloader update"
echo " --linuxrc=<file> Specifies a user created linuxrc"
echo " --busybox-config=<file> Specifies a user created busybox config"
echo " --genzimage Make and install kernelz image (PowerPC)"
echo " --luks Include LUKS support"
echo " --no-luks Exclude LUKS support"
echo " --gpg Include GPG-armored LUKS key support"
echo " --no-gpg Exclude GPG-armored LUKS key support"
echo " --b2sum Include b2sum"
echo " --no-b2sum Exclude b2sum"
echo " --busybox Include busybox"
echo " --no-busybox Exclude busybox"
echo " --unionfs Include support for unionfs"
echo " --no-unionfs Exclude support for unionfs"
echo " --netboot Create a self-contained env in the initramfs"
echo " --no-netboot Exclude netboot env"
echo " --real-root=<foo> Specify a default for real_root="
echo " Internals"
echo " --cachedir=<dir> Override the default cache location"
echo " --check-free-disk-space-bootdir=<MB>"
echo " Check for specified amount of free disk space in MB in BOOTDIR"
echo " at genkernel start"
echo " --check-free-disk-space-kerneloutputdir=<MB>"
echo " Check for specified amount of free disk space in MB in"
echo " kernel outputdir at genkernel start"
echo " --clear-cachedir Clear genkernel's cache location on start. Useful"
echo " if you want to force rebuild of included tools"
echo " like BusyBox, DMRAID, GnuPG, LVM, MDADM ..."
echo " --no-clear-cachedir Do not clean up on genkernel start"
echo " --tmpdir=<dir> Location of genkernel's temporary directory"
echo " --postclear Clear all tmp files and caches after genkernel has run"
echo " --no-postclear Do not clean up after genkernel has run"
echo " Output Settings"
echo " --kernel-config-filename=<...>"
echo " Set kernel config filename"
echo " --kernel-filename=<...>"
echo " Set kernel filename"
echo " --kernel-symlink-name=<...>"
echo " Set kernel symlink name"
echo " --minkernpackage=<archive>"
echo " Archive file created using tar containing kernel and"
echo " initramfs"
echo " --modulespackage=<archive>"
echo " Archive file created using tar containing modules after"
echo " the callbacks have run"
echo " --kerncache=<archive> Archive file created using tar containing kernel binary,"
echo " content of /lib/modules and the kernel config after the"
echo " callbacks have run"
echo " --no-kernel-sources This option is only valid if kerncache is"
echo " defined. If there is a valid kerncache no checks"
echo " will be made against a kernel source tree"
echo " --initramfs-filename=<...>"
echo " Set initramfs filename"
echo " --initramfs-overlay=<dir>"
echo " Directory structure to include in the initramfs,"
echo " only available on 2.6 kernels"
echo " --initramfs-symlink-name=<...>"
echo " Set initramfs symlink name"
echo " --firmware Enable copying of firmware into initramfs"
echo " --firmware-dir=<dir>"
echo " Specify directory to copy firmware from (defaults"
echo " to /lib/firmware)"
echo " --firmware-files=<files>"
echo " Specifies specific firmware files to copy. This"
echo " overrides --firmware-dir. For multiple files,"
echo " separate the filenames with a comma"
echo " --firmware-install Enable installing firmware onto root filesystem"
echo " (only available for kernels older than v4.14)"
echo " --no-firmware-install Do not install firmware onto root filesystem"
echo " --integrated-initramfs"
echo " Include the generated initramfs in the kernel"
echo " instead of keeping it as a separate file"
echo " --no-integrated-initramfs"
echo " Do not include the generated initramfs in the kernel"
echo " --wrap-initrd Wrap initramfs using mkimage for u-boot boots"
echo " --no-wrap-initrd Do not wrap initramfs using mkimage for u-boot boots"
echo " --compress-initramfs"
echo " Compress initramfs"
echo " --no-compress-initramfs"
echo " Do not compress initramfs"
echo " --compress-initrd Deprecated alias for --compress-initramfs"
echo " --no-compress-initrd Deprecated alias for --no-compress-initramfs"
echo " --compress-initramfs-type=<arg>"
echo " Compression type for initramfs (best, bzip2, fastest, gzip, lz4,"
echo " lzma, lza, xz, zstd)"
echo " --strip=(all|kernel|modules|none)"
echo " Strip debug symbols from none, all, installed kernel (obsolete) or"
echo " modules (default)"
echo " --no-strip Don't strip installed kernel or modules, alias for --strip=none"
echo " --systemmap-filename=<...>"
echo " Set System.map filename"
echo " --systemmap-symlink-name=<...>"
echo " Set System.map symlink name"
echo
echo "For a detailed list of supported initramfs options and flags; issue:"
echo " man 8 genkernel"
}
usage() {
echo "Gentoo Linux Genkernel ${GK_V}"
echo
echo "Usage: "
echo " genkernel [options] (all|bzImage|initramfs|kernel)"
echo
echo 'Some useful options:'
echo ' --menuconfig Run menuconfig after oldconfig'
echo ' --nconfig Run nconfig after oldconfig (requires ncurses)'
echo " --no-clean Do not run 'make clean' before compilation"
echo " --no-mrproper Do not run 'make mrproper' before compilation,"
echo ' this is implied by --no-clean'
echo
echo 'For a detailed list of supported commandline options and flags; issue:'
echo ' genkernel --help'
echo 'For a detailed list of supported initramfs options and flags; issue:'
echo ' man 8 genkernel'
}
parse_optbool() {
local opt=${1/--no-*/no} # false
opt=${opt/--*/yes} # true
echo ${opt}
}
parse_cmdline() {
case "$*" in
--cross-compile=*)
CMD_CROSS_COMPILE="${*#*=}"
print_info 3 "CMD_CROSS_COMPILE: ${CMD_CROSS_COMPILE}"
;;
--kernel-ar=*)
CMD_KERNEL_AR="${*#*=}"
print_info 3 "CMD_KERNEL_AR: ${CMD_KERNEL_AR}"
;;
--kernel-as=*)
CMD_KERNEL_AS="${*#*=}"
print_info 3 "CMD_KERNEL_AS: ${CMD_KERNEL_AS}"
;;
--kernel-cc=*)
CMD_KERNEL_CC="${*#*=}"
print_info 3 "CMD_KERNEL_CC: ${CMD_KERNEL_CC}"
;;
--kernel-ld=*)
CMD_KERNEL_LD="${*#*=}"
print_info 3 "CMD_KERNEL_LD: ${CMD_KERNEL_LD}"
;;
--kernel-make=*)
CMD_KERNEL_MAKE="${*#*=}"
print_info 3 "CMD_KERNEL_MAKE: ${CMD_KERNEL_MAKE}"
;;
--kernel-nm=*)
CMD_KERNEL_NM="${*#*=}"
print_info 3 "CMD_KERNEL_NM: ${CMD_KERNEL_NM}"
;;
--kernel-objcopy=*)
CMD_KERNEL_OBJCOPY="${*#*=}"
print_info 3 "CMD_KERNEL_OBJCOPY: ${CMD_KERNEL_OBJCOPY}"
;;
--kernel-objdump=*)
CMD_KERNEL_OBJDUMP="${*#*=}"
print_info 3 "CMD_KERNEL_OBJDUMP: ${CMD_KERNEL_OBJDUMP}"
;;
--kernel-ranlib=*)
CMD_KERNEL_RANLIB="${*#*=}"
print_info 3 "CMD_KERNEL_RANLIB: ${CMD_KERNEL_RANLIB}"
;;
--kernel-readelf=*)
CMD_KERNEL_READELF="${*#*=}"
print_info 3 "CMD_KERNEL_READELF: ${CMD_KERNEL_READELF}"
;;
--kernel-strip=*)
CMD_KERNEL_STRIP="${*#*=}"
print_info 3 "CMD_KERNEL_STRIP: ${CMD_KERNEL_STRIP}"
;;
--kernel-target=*)
KERNEL_MAKE_DIRECTIVE_OVERRIDE="${*#*=}"
print_info 3 "KERNEL_MAKE_DIRECTIVE_OVERRIDE: ${KERNEL_MAKE_DIRECTIVE_OVERRIDE}"
;;
--kernel-binary=*)
KERNEL_BINARY_OVERRIDE="${*#*=}"
print_info 3 "KERNEL_BINARY_OVERRIDE: ${KERNEL_BINARY_OVERRIDE}"
;;
--kernel-outputdir=*)
CMD_KERNEL_OUTPUTDIR="${*#*=}"
print_info 3 "CMD_KERNEL_OUTPUTDIR: ${CMD_KERNEL_OUTPUTDIR}"
;;
--utils-ar=*)
CMD_UTILS_AR="${*#*=}"
print_info 3 "CMD_UTILS_AR: ${CMD_UTILS_AR}"
;;
--utils-as=*)
CMD_UTILS_AS="${*#*=}"
print_info 3 "CMD_UTILS_AS: ${CMD_UTILS_AS}"
;;
--utils-cc=*)
CMD_UTILS_CC="${*#*=}"
print_info 3 "CMD_UTILS_CC: ${CMD_UTILS_CC}"
;;
--utils-cxx=*)
CMD_UTILS_CXX="${*#*=}"
print_info 3 "CMD_UTILS_CXX: ${CMD_UTILS_CXX}"
;;
--utils-cflags=*)
CMD_UTILS_CFLAGS="${*#*=}"
print_info 3 "CMD_UTILS_CFLAGS: ${CMD_UTILS_CFLAGS}"
;;
--utils-ld=*)
CMD_UTILS_LD="${*#*=}"
print_info 3 "CMD_UTILS_LD: ${CMD_UTILS_LD}"
;;
--utils-make=*)
CMD_UTILS_MAKE="${*#*=}"
print_info 3 "CMD_UTILS_MAKE: ${CMD_UTILS_MAKE}"
;;
--utils-nm=*)
CMD_UTILS_NM="${*#*=}"
print_info 3 "CMD_UTILS_NM: ${CMD_UTILS_NM}"
;;
--utils-objcopy=*)
CMD_UTILS_OBJCOPY="${*#*=}"
print_info 3 "CMD_UTILS_OBJCOPY: ${CMD_UTILS_OBJCOPY}"
;;
--utils-objdump=*)
CMD_UTILS_OBJDUMP="${*#*=}"
print_info 3 "CMD_UTILS_OBJDUMP: ${CMD_UTILS_OBJDUMP}"
;;
--utils-ranlib=*)
CMD_UTILS_RANLIB="${*#*=}"
print_info 3 "CMD_UTILS_RANLIB: ${CMD_UTILS_RANLIB}"
;;
--utils-readelf=*)
CMD_UTILS_READELF="${*#*=}"
print_info 3 "CMD_UTILS_READELF: ${CMD_UTILS_READELF}"
;;
--utils-strip=*)
CMD_UTILS_STRIP="${*#*=}"
print_info 3 "CMD_UTILS_STRIP: ${CMD_UTILS_STRIP}"
;;
--makeopts=*)
CMD_MAKEOPTS="${*#*=}"
print_info 3 "CMD_MAKEOPTS: ${CMD_MAKEOPTS}"
;;
--mountboot|--no-mountboot)
CMD_MOUNTBOOT=$(parse_optbool "$*")
print_info 3 "CMD_MOUNTBOOT: ${CMD_MOUNTBOOT}"
;;
--bootdir=*)
CMD_BOOTDIR="${*#*=}"
print_info 3 "CMD_BOOTDIR: ${CMD_BOOTDIR}"
;;
--modprobedir=*)
CMD_MODPROBEDIR="${*#*=}"
print_info 3 "CMD_MODPROBEDIR: ${CMD_MODPROBEDIR}"
;;
--do-keymap-auto)
CMD_DOKEYMAPAUTO="yes"
CMD_KEYMAP="yes"
print_info 3 "CMD_DOKEYMAPAUTO: ${CMD_DOKEYMAPAUTO}"
;;
--keymap|--no-keymap)
CMD_KEYMAP=$(parse_optbool "$*")
print_info 3 "CMD_KEYMAP: ${CMD_KEYMAP}"
;;
--bcache|--no-bcache)
CMD_BCACHE=$(parse_optbool "$*")
print_info 3 "CMD_BCACHE: ${CMD_BCACHE}"
;;
--lvm|--no-lvm)
CMD_LVM=$(parse_optbool "$*")
print_info 3 "CMD_LVM: ${CMD_LVM}"
;;
--lvm2|--no-lvm2)
CMD_LVM=$(parse_optbool "$*")
print_info 3 "CMD_LVM: ${CMD_LVM}"
echo
print_warning 1 "Please use --lvm, as --lvm2 is deprecated."
;;
--mdadm|--no-mdadm)
CMD_MDADM=$(parse_optbool "$*")
print_info 3 "CMD_MDADM: ${CMD_MDADM}"
;;
--mdadm-config=*)
CMD_MDADM_CONFIG="${*#*=}"
print_info 3 "CMD_MDADM_CONFIG: ${CMD_MDADM_CONFIG}"
;;
--b2sum|--no-b2sum)
CMD_B2SUM=$(parse_optbool "$*")
print_info 3 "CMD_B2SUM: ${CMD_B2SUM}"
;;
--busybox|--no-busybox)
CMD_BUSYBOX=$(parse_optbool "$*")
print_info 3 "CMD_BUSYBOX: ${CMD_BUSYBOX}"
;;
--microcode|--no-microcode)
case $(parse_optbool "$*") in
no) CMD_MICROCODE='no' ;;
yes) CMD_MICROCODE='all' ;;
esac
print_info 3 "CMD_MICROCODE: ${CMD_MICROCODE}"
;;
--microcode=*)
CMD_MICROCODE="${*#*=}"
print_info 3 "CMD_MICROCODE: ${CMD_MICROCODE}"
;;
--microcode-initramfs|--no-microcode-initramfs)
CMD_MICROCODE_INITRAMFS=$(parse_optbool "$*")
print_info 3 "CMD_MICROCODE_INITRAMFS: ${CMD_MICROCODE_INITRAMFS}"
;;
--nfs|--no-nfs)
CMD_NFS=$(parse_optbool "$*")
print_info 3 "CMD_NFS: ${CMD_NFS}"
;;
--unionfs|--no-unionfs)
CMD_UNIONFS=$(parse_optbool "$*")
print_info 3 "CMD_UNIONFS: ${CMD_UNIONFS}"
;;
--netboot|--no-netboot)
CMD_NETBOOT=$(parse_optbool "$*")
print_info 3 "CMD_NETBOOT: ${CMD_NETBOOT}"
;;
--real-root=*)
CMD_REAL_ROOT="${*#*=}"
print_info 3 "CMD_REAL_ROOT: ${CMD_REAL_ROOT}"
;;
--dmraid|--no-dmraid)
CMD_DMRAID=$(parse_optbool "$*")
print_info 3 "CMD_DMRAID: ${CMD_DMRAID}"
;;
--e2fsprogs|--no-e2fsprogs)
CMD_E2FSPROGS=$(parse_optbool "$*")
print_info 3 "CMD_E2FSPROGS: ${CMD_E2FSPROGS}"
;;
--xfsprogs|--no-xfsprogs)
CMD_XFSPROGS=$(parse_optbool "$*")
print_info 3 "CMD_XFSPROGS: ${CMD_XFSPROGS}"
;;
--zfs|--no-zfs)
CMD_ZFS=$(parse_optbool "$*")
print_info 3 "CMD_ZFS: ${CMD_ZFS}"
;;
--btrfs|--no-btrfs)
CMD_BTRFS=$(parse_optbool "$*")
print_info 3 "CMD_BTRFS: ${CMD_BTRFS}"
;;
--virtio|--no-virtio)
CMD_VIRTIO=$(parse_optbool "$*")
print_info 3 "CMD_VIRTIO: ${CMD_VIRTIO}"
;;
--multipath|--no-multipath)
CMD_MULTIPATH=$(parse_optbool "$*")
print_info 3 "CMD_MULTIPATH: ${CMD_MULTIPATH}"
;;
--boot-font=*)
CMD_BOOTFONT="${*#*=}"
[ -z "${CMD_BOOTFONT}" ] && CMD_BOOTFONT="none"
print_info 3 "CMD_BOOTFONT: ${CMD_BOOTFONT}"
;;
--bootloader=*)
CMD_BOOTLOADER="${*#*=}"
[ -z "${CMD_BOOTLOADER}" ] && CMD_BOOTLOADER="no"
print_info 3 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
;;
--no-bootloader)
CMD_BOOTLOADER="no"
print_info 3 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
;;
--iscsi|--no-iscsi)
CMD_ISCSI=$(parse_optbool "$*")
print_info 3 "CMD_ISCSI: ${CMD_ISCSI}"
;;
--hyperv|--no-hyperv)
CMD_HYPERV=$(parse_optbool "$*")
print_info 3 "CMD_HYPERV: ${CMD_HYPERV}"
;;
--sandbox|--no-sandbox)
CMD_SANDBOX=$(parse_optbool "$*")
print_info 3 "CMD_SANDBOX: ${CMD_SANDBOX}"
;;
--ssh|--no-ssh)
CMD_SSH=$(parse_optbool "$*")
print_info 3 "CMD_SSH: ${CMD_SSH}"
;;
--ssh-authorized-keys-file=*)
CMD_SSH_AUTHORIZED_KEYS_FILE="${*#*=}"
print_info 3 "CMD_SSH_AUTHORIZED_KEYS_FILE: ${CMD_SSH_AUTHORIZED_KEYS_FILE}"
;;
--ssh-host-keys=*)
CMD_SSH_HOST_KEYS="${*#*=}"
if ! isTrue "$(is_valid_ssh_host_keys_parameter_value "${CMD_SSH_HOST_KEYS}")"
then
echo "Error: --ssh-host-keys value '${CMD_SSH_HOST_KEYS}' is unsupported."
exit 1
fi
print_info 3 "CMD_SSH_HOST_KEYS: ${CMD_SSH_HOST_KEYS}"
;;
--strace|--no-strace)
CMD_STRACE=$(parse_optbool "$*")
print_info 3 "CMD_STRACE: ${CMD_STRACE}"
;;
--loglevel=*)
CMD_LOGLEVEL="${*#*=}"
LOGLEVEL="${CMD_LOGLEVEL}"
print_info 3 "CMD_LOGLEVEL: ${CMD_LOGLEVEL}"
;;
--menuconfig)
TERM_LINES=$(stty -a | head -n 1 | cut -d\ -f5 | cut -d\; -f1)
TERM_COLUMNS=$(stty -a | head -n 1 | cut -d\ -f7 | cut -d\; -f1)
if [[ TERM_LINES -lt 19 || TERM_COLUMNS -lt 80 ]]
then
echo 'Error: You need a terminal with at least 80 columns' \
'and 19 lines for --menuconfig; try --no-menuconfig ...'
exit 1
fi
CMD_MENUCONFIG="yes"
print_info 3 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
;;
--no-menuconfig)
CMD_MENUCONFIG="no"
print_info 3 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
;;
--nconfig)
TERM_LINES=$(stty -a | head -n 1 | cut -d\ -f5 | cut -d\; -f1)
TERM_COLUMNS=$(stty -a | head -n 1 | cut -d\ -f7 | cut -d\; -f1)
if [[ TERM_LINES -lt 19 || TERM_COLUMNS -lt 80 ]]
then
echo 'Error: You need a terminal with at least 80 columns' \
'and 19 lines for --nconfig; try --no-nconfig ...'
exit 1
fi
CMD_NCONFIG="yes"
print_info 3 "CMD_NCONFIG: ${CMD_NCONFIG}"
;;
--no-nconfig)
CMD_NCONFIG="no"
print_info 3 "CMD_NCONFIG: ${CMD_NCONFIG}"
;;
--gconfig|--no-gconfig)
CMD_GCONFIG=$(parse_optbool "$*")
print_info 3 "CMD_GCONFIG: ${CMD_GCONFIG}"
;;
--xconfig|--no-xconfig)
CMD_XCONFIG=$(parse_optbool "$*")
print_info 3 "CMD_XCONFIG: ${CMD_XCONFIG}"
;;
--save-config|--no-save-config)
CMD_SAVE_CONFIG=$(parse_optbool "$*")
print_info 3 "CMD_SAVE_CONFIG: ${CMD_SAVE_CONFIG}"
;;
--mrproper|--no-mrproper)
CMD_MRPROPER=$(parse_optbool "$*")
print_info 3 "CMD_MRPROPER: ${CMD_MRPROPER}"
;;
--clean|--no-clean)
CMD_CLEAN=$(parse_optbool "$*")
print_info 3 "CMD_CLEAN: ${CMD_CLEAN}"
;;
--oldconfig|--no-oldconfig)
CMD_OLDCONFIG=$(parse_optbool "$*")
isTrue "${CMD_OLDCONFIG}" && CMD_CLEAN="no"
print_info 3 "CMD_CLEAN: ${CMD_CLEAN}"
print_info 3 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
;;
--gensplash=*)
CMD_SPLASH="yes"
SPLASH_THEME="${*#*=}"
print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
print_info 3 "SPLASH_THEME: ${SPLASH_THEME}"
echo
print_warning 1 "Please use --splash, as --gensplash is deprecated."
;;
--gensplash|--no-gensplash)
CMD_SPLASH=$(parse_optbool "$*")
SPLASH_THEME='default'
print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
echo
print_warning 1 "Please use --splash, as --gensplash is deprecated."
;;
--splash=*)
CMD_SPLASH="yes"
SPLASH_THEME="${*#*=}"
print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
print_info 3 "SPLASH_THEME: ${SPLASH_THEME}"
;;
--splash|--no-splash)
CMD_SPLASH=$(parse_optbool "$*")
SPLASH_THEME='default'
print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
;;
--gensplash-res=*)
SPLASH_RES="${*#*=}"
print_info 3 "SPLASH_RES: ${SPLASH_RES}"
echo
print_warning 1 "Please use --splash-res, as --gensplash-res is deprecated."
;;
--splash-res=*)
SPLASH_RES="${*#*=}"
print_info 3 "SPLASH_RES: ${SPLASH_RES}"
;;
--install|--no-install)
CMD_INSTALL=$(parse_optbool "$*")
print_info 3 "CMD_INSTALL: ${CMD_INSTALL}"
;;
--ramdisk-modules|--no-ramdisk-modules)
CMD_RAMDISKMODULES=$(parse_optbool "$*")
print_info 3 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
;;
--all-ramdisk-modules|--no-all-ramdisk-modules)
CMD_ALLRAMDISKMODULES=$(parse_optbool "$*")
print_info 3 "CMD_ALLRAMDISKMODULES: ${CMD_ALLRAMDISKMODULES}"
;;
--module-rebuild|--no-module-rebuild)
CMD_MODULEREBUILD=$(parse_optbool "$*")
print_info 3 "CMD_MODULEREBUILD: ${CMD_MODULEREBUILD}"
;;
--module-rebuild-cmd=*)
CMD_MODULEREBUILD_CMD="${*#--module-rebuild-cmd=}"
print_info 3 "CMD_MODULEREBUILD_CMD: ${CMD_MODULEREBUILD_CMD}"
;;
--callback=*)
CMD_CALLBACK="${*#--callback=}"
print_info 3 "CMD_CALLBACK: ${CMD_CALLBACK}"
;;
--static|--no-static)
CMD_STATIC=$(parse_optbool "$*")
print_info 3 "CMD_STATIC: ${CMD_STATIC}"
;;
--tmpdir=*)
CMD_TMPDIR="${*#*=}"
print_info 3 "CMD_TMPDIR: ${CMD_TMPDIR}"
;;
--postclear|--no-postclear)
CMD_POSTCLEAR=$(parse_optbool "$*")
print_info 3 "CMD_POSTCLEAR: ${CMD_POSTCLEAR}"
;;
--check-free-disk-space-bootdir=*)
CMD_CHECK_FREE_DISK_SPACE_BOOTDIR="${*#*=}"
print_info 3 "CMD_CHECK_FREE_DISK_SPACE_BOOTDIR: ${CMD_CHECK_FREE_DISK_SPACE_BOOTDIR}"
;;
--check-free-disk-space-kerneloutputdir=*)
CMD_CHECK_FREE_DISK_SPACE_KERNELOUTPUTDIR="${*#*=}"
print_info 3 "CMD_CHECK_FREE_DISK_SPACE_KERNELOUTPUTDIR: ${CMD_CHECK_FREE_DISK_SPACE_KERNELOUTPUTDIR}"
;;
--color|--no-color)
CMD_COLOR=$(parse_optbool "$*")
if isTrue "${CMD_COLOR}"
then
NOCOLOR=false
else
NOCOLOR=true
fi
print_info 3 "CMD_COLOR: ${CMD_COLOR}"
set_color_vars
;;
--cleanup|--no-cleanup)
CMD_CLEANUP=$(parse_optbool "$*")
print_info 3 "CMD_CLEANUP: ${CMD_CLEANUP}"
;;
--logfile=*)
CMD_LOGFILE="${*#*=}"
print_info 3 "CMD_LOGFILE: ${CMD_LOGFILE}"
;;
--kerneldir=*)
CMD_KERNEL_DIR="${*#*=}"
print_info 3 "CMD_KERNEL_DIR: ${CMD_KERNEL_DIR}"
;;
--kernel-append-localversion=*)
CMD_KERNEL_APPEND_LOCALVERSION="${*#*=}"
print_info 3 "CMD_KERNEL_APPEND_LOCALVERSION: ${CMD_KERNEL_APPEND_LOCALVERSION}"
;;
--kernel-config=*)
CMD_KERNEL_CONFIG="${*#*=}"
print_info 3 "CMD_KERNEL_CONFIG: ${CMD_KERNEL_CONFIG}"
;;
--kernel-localversion=*)
CMD_KERNEL_LOCALVERSION="${*#*=}"
print_info 3 "CMD_KERNEL_LOCALVERSION: ${CMD_KERNEL_LOCALVERSION}"
;;
--kernel-modules-prefix=*)
CMD_KERNEL_MODULES_PREFIX="${*#*=}"
print_info 3 "CMD_KERNEL_MODULES_PREFIX: ${CMD_KERNEL_MODULES_PREFIX}"
;;
--cachedir=*)
CACHE_DIR="${*#*=}"
print_info 3 "CACHE_DIR: ${CACHE_DIR}"
;;
--clear-cachedir|--no-clear-cachedir)
CMD_CLEAR_CACHEDIR=$(parse_optbool "$*")
print_info 3 "CMD_CLEAR_CACHEDIR: ${CMD_CLEAR_CACHEDIR}"
;;
--minkernpackage=*)
CMD_MINKERNPACKAGE="${*#*=}"
print_info 3 "MINKERNPACKAGE: ${CMD_MINKERNPACKAGE}"
;;
--modulespackage=*)
CMD_MODULESPACKAGE="${*#*=}"
print_info 3 "MODULESPACKAGE: ${CMD_MODULESPACKAGE}"
;;
--kerncache=*)
CMD_KERNCACHE="${*#*=}"
print_info 3 "KERNCACHE: ${CMD_KERNCACHE}"
;;
--kernel-config-filename=*)
CMD_KERNEL_CONFIG_FILENAME="${*#*=}"
print_info 3 "CMD_KERNEL_CONFIG_FILENAME: ${CMD_KERNEL_CONFIG_FILENAME}"
;;
--kernel-filename=*)
CMD_KERNEL_FILENAME="${*#*=}"
print_info 3 "CMD_KERNEL_FILENAME: ${CMD_KERNEL_FILENAME}"
;;
--kernel-symlink-name=*)
CMD_KERNEL_SYMLINK_NAME="${*#*=}"
print_info 3 "CMD_KERNEL_SYMLINK_NAME: ${CMD_KERNEL_SYMLINK_NAME}"
;;
--symlink|--no-symlink)
CMD_SYMLINK=$(parse_optbool "$*")
print_info 3 "CMD_SYMLINK: ${CMD_SYMLINK}"
;;
--kernel-sources|--no-kernel-sources)
CMD_KERNEL_SOURCES=$(parse_optbool "$*")
print_info 3 "CMD_KERNEL_SOURCES: ${CMD_KERNEL_SOURCES}"
;;
--initramfs-filename=*)
CMD_INITRAMFS_FILENAME="${*#*=}"
print_info 3 "CMD_INITRAMFS_FILENAME: ${CMD_INITRAMFS_FILENAME}"
;;
--initramfs-overlay=*)
CMD_INITRAMFS_OVERLAY="${*#*=}"
print_info 3 "CMD_INITRAMFS_OVERLAY: ${CMD_INITRAMFS_OVERLAY}"
;;
--initramfs-symlink-name=*)
CMD_INITRAMFS_SYMLINK_NAME="${*#*=}"
print_info 3 "CMD_INITRAMFS_SYMLINK_NAME: ${CMD_INITRAMFS_SYMLINK_NAME}"
;;
--systemmap-filename=*)
CMD_SYSTEMMAP_FILENAME="${*#*=}"
print_info 3 "CMD_SYSTEMMAP_FILENAME: ${CMD_SYSTEMMAP_FILENAME}"
;;
--systemmap-symlink-name=*)
CMD_SYSTEMMAP_SYMLINK_NAME="${*#*=}"
print_info 3 "CMD_SYSTEMMAP_SYMLINK_NAME: ${CMD_SYSTEMMAP_SYMLINK_NAME}"
;;
--linuxrc=*)
CMD_LINUXRC="${*#*=}"
print_info 3 "CMD_LINUXRC: ${CMD_LINUXRC}"
;;
--busybox-config=*)
CMD_BUSYBOX_CONFIG="${*#*=}"
print_info 3 "CMD_BUSYBOX_CONFIG: ${CMD_BUSYBOX_CONFIG}"
;;
--genzimage)
KERNEL_MAKE_DIRECTIVE_2='zImage.initrd'
KERNEL_BINARY_2='arch/powerpc/boot/zImage.initrd'
CMD_GENZIMAGE="yes"
print_info 3 "CMD_GENZIMAGE: ${CMD_GENZIMAGE}"
# ENABLE_PEGASOS_HACKS="yes"
# print_info 3 "ENABLE_PEGASOS_HACKS: ${ENABLE_PEGASOS_HACKS}"
;;
--luks|--no-luks)
CMD_LUKS=$(parse_optbool "$*")
print_info 3 "CMD_LUKS: ${CMD_LUKS}"
;;
--gpg|--no-gpg)
CMD_GPG=$(parse_optbool "$*")
print_info 3 "CMD_GPG: ${CMD_GPG}"
;;
--firmware|--no-firmware)
CMD_FIRMWARE=$(parse_optbool "$*")
print_info 3 "CMD_FIRMWARE: ${CMD_FIRMWARE}"
;;
--firmware-dir=*)
CMD_FIRMWARE_DIR="${*#*=}"
CMD_FIRMWARE="yes"
print_info 3 "CMD_FIRMWARE_DIR: ${CMD_FIRMWARE_DIR}"
;;
--firmware-files=*)
CMD_FIRMWARE_FILES="${*#*=}"
CMD_FIRMWARE="yes"
print_info 3 "CMD_FIRMWARE_FILES: ${CMD_FIRMWARE_FILES}"
;;
--firmware-install|--no-firmware-install)
CMD_FIRMWARE_INSTALL=$(parse_optbool "$*")
print_info 3 "CMD_FIRMWARE_INSTALL: ${CMD_FIRMWARE_INSTALL}"
;;
--integrated-initramfs|--no-integrated-initramfs)
CMD_INTEGRATED_INITRAMFS=$(parse_optbool "$*")
print_info 3 "CMD_INTEGRATED_INITRAMFS=${CMD_INTEGRATED_INITRAMFS}"
;;
--wrap-initrd|--no-wrap-initrd)
CMD_WRAP_INITRD=$(parse_optbool "$*")
print_info 3 "CMD_WRAP_INITRD=${CMD_WRAP_INITRD}"
;;
--compress-initramfs|--no-compress-initramfs)
CMD_COMPRESS_INITRD=$(parse_optbool "$*")
print_info 3 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
;;
--compress-initrd|--no-compress-initrd)
CMD_COMPRESS_INITRD=$(parse_optbool "$*")
print_info 3 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
echo
print_warning 1 "Please use --[no-]compress-initramfs, as --[no-]compress-initrd is deprecated."
;;
--compress-initramfs-type=*|--compress-initrd-type=*)
CMD_COMPRESS_INITRD_TYPE="${*#*=}"
print_info 3 "CMD_COMPRESS_INITRD_TYPE: ${CMD_COMPRESS_INITRD_TYPE}"
;;
--config=*)
print_info 3 "CMD_GK_CONFIG: "${*#*=}""
;;
--nice)
CMD_NICE=10
print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--nice=*)
CMD_NICE="${*#*=}"
if [ ${CMD_NICE} -lt 0 -o ${CMD_NICE} -gt 19 ]
then
echo 'Error: Illegal value specified for --nice= parameter.'
exit 1
fi
print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--no-nice)
CMD_NICE=0
print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--strip=*)
CMD_STRIP_TYPE="${*#*=}"
print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
;;
--no-strip)
CMD_STRIP_TYPE=none
print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
;;
all)
BUILD_KERNEL="yes"
BUILD_MODULES="yes"
BUILD_RAMDISK="yes"
;;
ramdisk|initramfs)
BUILD_KERNEL="no"
BUILD_MODULES="no"
BUILD_RAMDISK="yes"
;;
kernel)
BUILD_KERNEL="yes"
BUILD_MODULES="yes"
BUILD_RAMDISK="no"
;;
bzImage)
BUILD_KERNEL="yes"
BUILD_MODULES="no"
BUILD_RAMDISK="no"
CMD_RAMDISKMODULES="no"
print_info 3 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
;;
--help)
longusage
exit 1
;;
--version)
echo "${GK_V}"
exit 0
;;
*)
small_die "Unknown option '$*'!"
;;
esac
}