summaryrefslogtreecommitdiff
path: root/sys-boot/shlilo-lantank
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
commit623ee73d661e5ed8475cb264511f683407d87365 (patch)
tree993eb27c93ec7a2d2d19550300d888fc1fed9e69 /sys-boot/shlilo-lantank
parentceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff)
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'sys-boot/shlilo-lantank')
-rw-r--r--sys-boot/shlilo-lantank/Manifest4
-rw-r--r--sys-boot/shlilo-lantank/files/lilo.conf16
-rw-r--r--sys-boot/shlilo-lantank/metadata.xml8
-rw-r--r--sys-boot/shlilo-lantank/shlilo-lantank-20040408.ebuild34
4 files changed, 0 insertions, 62 deletions
diff --git a/sys-boot/shlilo-lantank/Manifest b/sys-boot/shlilo-lantank/Manifest
deleted file mode 100644
index 8b7df0221f50..000000000000
--- a/sys-boot/shlilo-lantank/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX lilo.conf 279 BLAKE2B 6ee9990dd47e34c84295997c5386e8e0d1817d8d5820c3ac3832fb8119e2f2c7a526bd5a0cf252c4d8094c5327d4d9156bd798024a3ee21c30d407fce140a0ee SHA512 317f08697ad868b105bd2df9615527b321453cffeff7834e0f2b64d2c012aff25068662ab4e5f9d0cd6ab155b17301cafad4bf982fc4d7c1e52b6dbdf207ef46
-DIST sh-lilo-sel-20040408.tar.gz 85932 BLAKE2B ed6547022d0459a2cd3fdb234ef6f909fe07501662b1ea8808e0f6c2179a4d408e1de85b7efffb9f53712374818681b9c86c8a6302332bfa94ba00c575e05038 SHA512 81d79d3fda076b8e6ae9112e0f93f5bd544cb4613eff1ec7cd21decd9350489c6b3f5bf4d19a77ca8d60658a08fa3a464dfe5d66617c4d61e929641fc1c5ff16
-EBUILD shlilo-lantank-20040408.ebuild 614 BLAKE2B d665bf20de079a9016bc98898f9189fb33d2c2d846c6370e6bb31920615396d27ca18e303426f3fcec17530e58d91c84591b512c176d97408487b4ab21f26ea8 SHA512 78680c7c99bd7190df118fff663cb9561c6359e5b023b704281c81bf366a730f407d35ad28d28b619f35ea3b5776e515e2b1078bcef87f77cde6328beeae50f1
-MISC metadata.xml 257 BLAKE2B fc90bab7767542f2f05339c836064cc76e1f9575c30ce502c60ca0afc2d0b26dbd4185d0829d046ac6251c4ae0d6c234ee6862d9cf3db67871a030223b786b3d SHA512 7af06754c364d6434a6f11c9cf1516a6cceb3a9f376717de2a48ffa1d953bdb304e1041b63cb80d89236a94ecb5c867b7a66ca3bcf6c69d4f54992514cc9415a
diff --git a/sys-boot/shlilo-lantank/files/lilo.conf b/sys-boot/shlilo-lantank/files/lilo.conf
deleted file mode 100644
index cd5bc81d3835..000000000000
--- a/sys-boot/shlilo-lantank/files/lilo.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-# Example lilo.conf
-linear
-boot=/dev/hda
-install=/boot/boot.b
-
-# timeout is in 10's of milliseconds; so 100 is 1 second
-prompt
-timeout=800
-default=default
-
-# default kernel settings
-read-only
-append="mem=64M root=/dev/hda1 console=ttySC1,9600"
-
-image=/boot/zImage
- label=default
diff --git a/sys-boot/shlilo-lantank/metadata.xml b/sys-boot/shlilo-lantank/metadata.xml
deleted file mode 100644
index 1afd1e74d6d4..000000000000
--- a/sys-boot/shlilo-lantank/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>sh@gentoo.org</email>
- <name>Gentoo Linux SuperH Development</name>
-</maintainer>
-</pkgmetadata>
diff --git a/sys-boot/shlilo-lantank/shlilo-lantank-20040408.ebuild b/sys-boot/shlilo-lantank/shlilo-lantank-20040408.ebuild
deleted file mode 100644
index 2226078e9a1a..000000000000
--- a/sys-boot/shlilo-lantank/shlilo-lantank-20040408.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit mount-boot
-
-MY_P="sh-lilo-sel-${PV}"
-DESCRIPTION="bootloader for the SuperH Lantank"
-HOMEPAGE="http://oss.renesas.com/"
-SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
-
-LICENSE="GPL-2+ BSD"
-SLOT="0"
-KEYWORDS="-* sh"
-IUSE=""
-RESTRICT="strip"
-
-S=${WORKDIR}/${MY_P}
-
-QA_TEXTRELS_sh="sbin/lilo"
-
-src_compile() { :; }
-
-src_install() {
- into /
- dosbin precompiled/lilo
- insinto /boot
- doins precompiled/boot.b
- dosym . /boot/boot
- insinto /etc
- doins "${FILESDIR}"/lilo.conf
- dodoc ChangeLog README TODO
-}