You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-kernel/mips-sources/files/eblits/pkg_postinst-v1.eblit

20 lines
528 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
# Eblit that handles binpkg postinst tasks.
# In this case, it sets up the /usr/src/linux symlink.
eblit-mips-sources-pkg_postinst() {
# Symlink /usr/src/linux as appropriate
local my_ksrc="${S##*/}"
for x in {ip27,ip28,ip30,cobalt}; do
use ${x} && my_ksrc="${my_ksrc}.${x}"
done
if [ ! -e "${ROOT}usr/src/linux" ]; then
rm -f "${ROOT}usr/src/linux"
ln -sf "${my_ksrc}" "${ROOT}/usr/src/linux"
fi
}