TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why is the Linux kernel is tied to LILO for make install?

6 pointsby opensourcedudeover 9 years ago

3 comments

belovedeagleover 9 years ago
Because LILO is <i>the</i> Linux Loader. You&#x27;re free to use grub if you enjoy bloated sucky software; that&#x27;s the beauty of free software. It doesn&#x27;t mean the kernel contributors have to support you, though.
评论 #10474907 未加载
评论 #10477386 未加载
kazinatorover 9 years ago
Note that earlier in the script, it tests whether you have scripts for installing the kernel, either in the user&#x27;s directory or &#x2F;sbin:<p><pre><code> # User may have a custom install script if [ -x ~&#x2F;bin&#x2F;${INSTALLKERNEL} ]; then exec ~&#x2F;bin&#x2F;${INSTALLKERNEL} &quot;$@&quot;; fi if [ -x &#x2F;sbin&#x2F;${INSTALLKERNEL} ]; then exec &#x2F;sbin&#x2F;${INSTALLKERNEL} &quot;$@&quot;; fi </code></pre> Trying the Lilo steps is a fallback strategy for users that don&#x27;t have an installkernel script.<p>When you &quot;exec&quot; a command, control will not return to the script, because the process image is replaced with the specified program.
suprjamiover 9 years ago
Have you actually run the command you&#x27;re querying? Grub works too.