From 96f5e7faca1a0db6eb28ffd0c8f43bd15fa56efb Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sat, 24 Sep 2016 09:57:24 +0200 Subject: [PATCH] pkg: hook up src/boot, wow, that was easy --- Makefile | 1 + src/Makefile | 5 ++++- {boot => src/boot}/brand-opnsense.4th | 0 {boot => src/boot}/logo-hourglass.4th | 0 4 files changed, 5 insertions(+), 1 deletion(-) rename {boot => src/boot}/brand-opnsense.4th (100%) rename {boot => src/boot}/logo-hourglass.4th (100%) diff --git a/Makefile b/Makefile index 0a42f6146..8d80fc5c1 100644 --- a/Makefile +++ b/Makefile @@ -214,6 +214,7 @@ scripts: want-git install: force @${MAKE} -C ${.CURDIR}/contrib install DESTDIR=${DESTDIR} + @${MAKE} -C ${.CURDIR}/src install_boot DESTDIR=${DESTDIR} @${MAKE} -C ${.CURDIR}/src install DESTDIR=${DESTDIR} \ CORE_NAME=${CORE_NAME} CORE_ABI=${CORE_ABI} \ CORE_PACKAGESITE=${CORE_PACKAGESITE} \ diff --git a/src/Makefile b/src/Makefile index c45108d24..99c1e449c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,10 @@ ROOT= /usr/local TREES= etc opnsense sbin wizard www -EXTRA= bootstrap +EXTRA= boot bootstrap + +ROOT_boot= # / +TREES_boot= boot ROOT_bootstrap= /usr/local TREES_bootstrap=etc/pkg diff --git a/boot/brand-opnsense.4th b/src/boot/brand-opnsense.4th similarity index 100% rename from boot/brand-opnsense.4th rename to src/boot/brand-opnsense.4th diff --git a/boot/logo-hourglass.4th b/src/boot/logo-hourglass.4th similarity index 100% rename from boot/logo-hourglass.4th rename to src/boot/logo-hourglass.4th