blob: 170fd1cdd98ec97ae17a20b0aa87337eb60e1018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
inherit eutils
DESCRIPTION="Init script to set framebuffer resolution"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
RDEPEND="sys-libs/ncurses"
src_install() {
dodir /etc/conf.d
dodir /etc/init.d
install -m 0755 ${FILESDIR}/fbres.sysinit ${D}/etc/init.d/fbres
install -m 0644 ${FILESDIR}/fbres.sysconfig ${D}/etc/conf.d/fbres
}
|