Lines 45-50
longusage() {
Link Here
|
45 |
echo " --static Build a static (monolithic kernel)." |
45 |
echo " --static Build a static (monolithic kernel)." |
46 |
echo " --initramfs Builds initramfs before kernel and embeds it" |
46 |
echo " --initramfs Builds initramfs before kernel and embeds it" |
47 |
echo " into the kernel." |
47 |
echo " into the kernel." |
|
|
48 |
echo " --v86d Install v86d into the initramfs (required for uvesafb)" |
48 |
echo " Kernel settings" |
49 |
echo " Kernel settings" |
49 |
echo " --kerneldir=<dir> Location of the kernel sources" |
50 |
echo " --kerneldir=<dir> Location of the kernel sources" |
50 |
echo " --kernel-config=<file> Kernel configuration file to use for compilation" |
51 |
echo " --kernel-config=<file> Kernel configuration file to use for compilation" |
Lines 65-71
longusage() {
Link Here
|
65 |
echo " autodetect." |
66 |
echo " autodetect." |
66 |
echo " --makeopts=<makeopts> Make options such as -j2, etc..." |
67 |
echo " --makeopts=<makeopts> Make options such as -j2, etc..." |
67 |
echo " --mountboot Mount BOOTDIR automatically if mountable" |
68 |
echo " --mountboot Mount BOOTDIR automatically if mountable" |
68 |
echo " --no-mountboot Don't mount BOOTDIR automatically" |
69 |
echo " --no-mountboot Don't mount BOOTDIR automatically" |
69 |
echo " --bootdir=<dir> Set the location of the boot-directory, default is /boot" |
70 |
echo " --bootdir=<dir> Set the location of the boot-directory, default is /boot" |
70 |
echo " Initialization" |
71 |
echo " Initialization" |
71 |
echo " --gensplash=<theme> Enable framebuffer splash using <theme>" |
72 |
echo " --gensplash=<theme> Enable framebuffer splash using <theme>" |
Lines 374-379
parse_cmdline() {
Link Here
|
374 |
CMD_INITRAMFS=1 |
375 |
CMD_INITRAMFS=1 |
375 |
print_info 2 "CMD_INITRAMFS: ${CMD_INITRAMFS}" |
376 |
print_info 2 "CMD_INITRAMFS: ${CMD_INITRAMFS}" |
376 |
;; |
377 |
;; |
|
|
378 |
--v86d) |
379 |
CMD_V86D=1 |
380 |
print_info 2 "CMD_V86D: ${CMD_V86D}" |
381 |
;; |
377 |
--tempdir=*) |
382 |
--tempdir=*) |
378 |
TMPDIR=`parse_opt "$*"` |
383 |
TMPDIR=`parse_opt "$*"` |
379 |
TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$ |
384 |
TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$ |