Difference between pages "Package:Lilo" and "Template:Ebuild"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
 
Line 1: Line 1:
<noinclude>
This is the "Ebuild" template.
It should be called in the following format:
<pre>
{{Ebuild
{{Ebuild
|Summary=Standard Linux boot loader
|Summary=
|CatPkg=sys-boot/lilo
|CatPkg=
|Maintainer=
|Maintainer=
|Homepage=
}}
}}
__TOC__
</pre>
'''Lilo''' linux loader is a boot loader to load linux, and other operating systems.  Lilo is called by default when running make install in kernel source directories.
Edit the page to see the template text.
=Installation=
</noinclude><includeonly>{{#widget:AddThis}}<div class="container"><div class="row">
==Emerge==
<div class="col-md-3 col-md-push-9">
<console>##i### emerge lilo</console>
<b>[[CatPkg::{{{CatPkg|}}}]]</b>
 
<hr>{{#vardefine:cat|{{#explode:{{{CatPkg}}}|/|0}}}}{{#vardefine:pkg|{{#explode:{{{CatPkg}}}|/|1}}}}{{#get_web_data:url=http://ports.funtoo.org/packages.xml|format=xml|use xpath|data=repo_id=/packages/category[@name='{{#var:cat}}']/package[@name='{{#var:pkg}}']/@repository}}{{#vardefine:repoid|{{#if:{{#external_value:repo_id}}|{{#external_value:repo_id}}|gentoo}}}}{{#set:RepoID={{#var:repoid}}}}
=Configure=
<table border="0" width="100%">
 
{{#if: {{{Maintainer|}}} |<tr><td><i>Current Maintainer(s):</i></td><td>{{#arraymaptemplate:{{{Maintainer|}}}|MaintainerDisplay|,|<br>}}</td></tr> |}}<tr><td><i>Source Repository:</i></td><td>{{#ask:[[Category:Repositories]] [[Repository ID::{{#var:repoid}}]]}}</td></tr>  {{#if: {{{Homepage|}}} |<tr><td></td><td>[[Homepage::{{{Homepage|}}}|Homepage]]</td></tr> |}}</table><hr>
Lilo's default configuration example has hda references, lets change those to sda recursively using sed.<console>##i### sed -i -e 's/hda/sda/' /etc/lilo.conf.example</console>Now we copy the example configuration to the running configuration.<console>##i### cp /etc/lilo.conf.example /etc/lilo.conf</console>
<b>Summary:</b> [[Summary::{{{Summary|}}}]]
 
{{#get_web_data:url=http://127.0.0.1:8888/portage/meta/{{{CatPkg}}}|format=xml|use xpath|data=use=/package/@use}}{{#set:Use={{#external_value:use}}}}{{#if: {{#external_value:use}}|
==Default OS==
== Use Flags ==
 
{{#arraymaptemplate:{{#external_value:use}}|ExternUse|,|}}
To change default booting os.
 
{{file|name=/etc/lilo.conf|desc=|body=
# MBR to install LILO to:
boot = /dev/sda
map = /boot/.map
default = Funtoo
}}
}}
<div class="bs-head" style="text-decoration: underline; margin-bottom: 15px;">Funtoo News</div>
{{NewsList|3}}
[[News|View More News...]]


==Timeout==
</div><div class="col-xs-12 col-md-9 col-md-pull-3">{{DISPLAYTITLE:{{PAGENAME}}}}
 
<div id="ebuild_header"><div id="ebuild_logo" style="padding-bottom: 1em;">[[File:ebuild.png|link=|frameless|class=img-responsive]]</div><div id="ebuild_title">
To have lilo auto start after a set time.
= {{PAGENAME}} =
 
</div></div>
{{file|name=/etc/lilo.conf|desc=|body=
{{#seo:
# If you always want to see the prompt with a 15 second timeout:
|title=Package: {{PAGENAME}} ({{{CatPkg}}})
timeout=150}}
|keywords={{{CatPkg}}},ebuild,gentoo,funtoo
 
|description=A Funtoo Linux ebuild for {{{CatPkg}}}: {{{Summary|}}}
==Silence==
}}{{Tip|This is a wiki page. To edit it, {{CreateAccount}}. Then [[{{#special:userlogin}}|log in]] and then {{#formlink:form=Ebuild|link text=click here to edit this page|target={{FULLPAGENAME}}}}. See our [[Help:Funtoo_Editing_Guidelines|editing guidelines]] to becoming a wiki-editing pro.}}
 
</includeonly>
For silent kernel decompression at boot:
 
{{file|name=/etc/lilo.conf|desc=|body=
label = Funtoo
read-only # read-only for checking
append = "quiet"}}
 
==alternate init systems==
 
to load an alternate init system, example systemd instead of openrc:
 
{{file|name=/etc/lilo.conf|desc=|body=
label = Funtoo-systemd
read-only # read-only for checking
append = "quiet init=/usr/lib/systemd/systemd"}}
 
==Old Configs==
 
It is a good idea to keep an old image around in case problems crop up in new kernel builds.
 
{{file|name=/etc/lilo.conf|desc=|body=
#image = /boot/bzImage.old
        root = /dev/sda3
        #root = /devices/discs/disc0/part3
        label = funtoo.old
        read-only # read-only for checking#}}
 
=Kernel Linking=
 
Using symlinks is a good idea to be able to determine if the loader is loading the correct image, and enable tab auto completion to ensure we are loading what we intend to.  symlinks remove an easy area to fumble when adjusting configurations.
 
<console>##i### ln -s /boot/vmlinuz-version /boot/bzImage</console>
<console>##i### ln -s /boot/vmlinuz-version.old /boot/bzImage.old</console>
 
{{fancynote|if you do not use make install to copy your kernel to /boot, you must run lilo to load the new kernel images & install lilo to the hard drives mbr}}
 
==Install==
Install lilo to the MBR.<console>##i### lilo</console>[[Category:Bootloaders]]
{{EbuildFooter}}

Revision as of 17:16, January 12, 2015

This is the "Ebuild" template. It should be called in the following format:

{{Ebuild
|Summary=
|CatPkg=
|Maintainer=
|Homepage=
}}

Edit the page to see the template text.