summaryrefslogtreecommitdiff
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* share/issue.devfix: tweak whitespace, use HTTPSSam James2023-07-081-9/+9
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* share/fstab: fix whitespaceSam James2023-07-081-1/+0
| | | | | | | As Matt pointed out on the PR. Fixes: aaf5ebb65b16fd41877a04cde82fdd3d8cc90cfb Signed-off-by: Sam James <sam@gentoo.org>
* share/fstab: make example root filesystem entry use xfsFlorian Schmaus2023-07-081-1/+1
| | | | | | | | | | The new default of the handbook is xfs, so follow that in baselayout's fstab. Suggested-by: Sam James <sam@gentoo.org> Signed-off-by: Florian Schmaus <flow@gentoo.org> Closes: https://github.com/gentoo/baselayout/pull/4 Signed-off-by: Sam James <sam@gentoo.org>
* share/fstab: make comment regarding pass number a NOTEFlorian Schmaus2023-07-081-2/+3
| | | | | Signed-off-by: Florian Schmaus <flow@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
* share/fstab: move fstable header right above example entriesFlorian Schmaus2023-07-081-3/+2
| | | | | | | | | Move the fstable table header right above the commented-out example fstab entries. Also split "<dump/pass>" into "<dump> <pass>", since those are two different fields (see fstab(5)). Signed-off-by: Florian Schmaus <flow@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
* share/fstab: drop reiserfs references and noatime, use defaultsFlorian Schmaus2023-07-081-9/+2
| | | | | | | | | | | | | | | | | ReiserFS was deprecated in Linux 5.18 and slated for removal in 2025. Using 'noatime' does seldom really bring any noticeable performance benefit. The default of 'relatime', which Linux supports for a long time, is a good compromise. Having an (coarse-grained) atime allows for certain use cases. For example, a tool that detects unused packages in a system and suggest them for removal. A generic configuration file like this should simply use the defaults. Especially if those are sane ones. No need to continue the noatime cargo cult. Signed-off-by: Florian Schmaus <flow@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
* passwd: update home directory for portage userMike Gilbert2023-06-261-1/+1
| | | | Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* drop OS specific supportWilliam Hubbs2023-01-035-0/+104
| | | | | | This is no longer needed since we have dropped support for *BSD. Signed-off-by: William Hubbs <williamh@gentoo.org>
* simply the build system greatlyMike Frysinger2008-03-231-4/+0
| | | | svn path=/trunk/; revision=3115
* Rewrite the core parts in C. We now provide librc so other programs canRoy Marples2007-04-051-0/+4
query runlevels, services and state without using bash. We also provide libeinfo so other programs can easily use our informational functions. As such, we have dropped the requirement of using bash as the init script shell. We now use /bin/sh and have strived to make the scripts as portable as possible. Shells that work are bash and dash. busybox works provided you disable s-s-d. If you have WIPE_TMP set to yes in conf.d/bootmisc you should disable find too. zsh and ksh do not work at this time. Networking support is currently being re-vamped also as it was heavily bash array based. As such, a new config format is available like so config_eth0="1.2.3.4/24 5.6.7.8/16" or like so config_eth0="'1.2.3.4 netmask 255.255.255.0' '5.6.7.8 netmask 255.255.0.0'" We will still support the old bash array format provided that /bin/sh IS a link it bash. ChangeLog for baselayout-1 can be found in our SVN repo. svn path=/trunk/; revision=2547