mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-03 09:12:05 +08:00
9 lines
249 B
Makefile
9 lines
249 B
Makefile
GRUB_SERIAL:=$(call qstrip,$(CONFIG_TARGET_SERIAL))
|
|
ifeq ($(GRUB_SERIAL),)
|
|
$(error This platform requires CONFIG_TARGET_SERIAL be set!)
|
|
endif
|
|
|
|
define Package/base-files/install-target
|
|
$(SED) "s#@GRUB_SERIAL@#$(GRUB_SERIAL)#" $(1)/etc/inittab
|
|
endef
|