kumquat-buildroot/package/mstpd/mstpd.mk
Francois Perrad 09874785c0 package/mstpd: fix install path of binaries
As reported by Colin Foster at
https://lore.kernel.org/buildroot/YsiEyscz0S5b9zj9@colin-ia-desktop/,
the Linux kernel expects the bridge-stp binary to be installed as
/sbin/bridge-stp. See
https://elixir.bootlin.com/linux/v5.18/source/net/bridge/br_private.h#L53.

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Tested-by: Colin Foster <colin.foster@in-advantage.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-07-18 12:19:49 +02:00

18 lines
519 B
Makefile

################################################################################
#
# mstpd
#
################################################################################
MSTPD_VERSION = 0.1.0
MSTPD_SITE = $(call github,mstpd,mstpd,$(MSTPD_VERSION))
MSTPD_AUTORECONF = YES
MSTPD_LICENSE = GPL-2.0, RSA Data Security (md5)
MSTPD_LICENSE_FILES = LICENSE hmac_md5.c
# The Linux kernel requires mstp binaries to be installed into /sbin,
# not /usr/sbin.
MSTPD_CONF_OPTS = --sbindir=/sbin
$(eval $(autotools-package))