summaryrefslogtreecommitdiff
blob: 0db218725994394c109cf6e595b4588ee5b58ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# Eblit informing a user when they try to apply two machine patches to the
# same tree.  Most machine patches are exclusive to avoid conflicts.

err_only_one_mach_allowed() {
	echo -e ""
	eerror "A patchset for a specific machine-type has already been selected."
	eerror "No other patches for machines-types are permitted.  You will need a"
	eerror "separate copy of the kernel sources for each different machine-type"
	eerror "you want to build a kernel for."
	die "Only one machine-type patchset allowed"
}