mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 07:05:16 +02:00
18 lines
554 B
Bash
18 lines
554 B
Bash
# Template file for 'u-boot-menu'
|
|
pkgname=u-boot-menu
|
|
version=0.1
|
|
revision=1
|
|
archs=noarch
|
|
conf_files="/etc/default/extlinux"
|
|
short_desc="Create an u-boot menu with currently available kernels"
|
|
maintainer="Remi Pommarel <repk@triplefau.lt>"
|
|
license="Public domain"
|
|
homepage="https://www.voidlinux.org"
|
|
|
|
do_install() {
|
|
vinstall ${FILESDIR}/extlinux.default 644 etc/default extlinux
|
|
vinstall ${FILESDIR}/kernel.d/extlinux 750 \
|
|
etc/kernel.d/post-install 60-extlinux
|
|
vinstall ${FILESDIR}/kernel.d/extlinux 750 \
|
|
etc/kernel.d/post-remove 60-extlinux
|
|
}
|