Updates the linux-sources and install it to your system
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.
 
 
 
linux-update/Makefile

12 lines
304 B

POSTINST_D ?= /etc/kernel/postinst.d
SBIN_D ?= /usr/local/sbin
all:
@echo 'Nothing to do :)'
install:
install --mode=0755 --directory $(D)$(POSTINST_D)
install --mode=0755 postinst.d/* $(D)$(POSTINST_D)
install --mode=0755 --directory $(D)$(SBIN_D)
install --mode=0755 linux-update $(D)$(SBIN_D)