From 583db7d0b971e720d5909b4effca904a318b7e31 Mon Sep 17 00:00:00 2001 From: Markham Date: Thu, 3 Dec 2015 16:37:12 +0100 Subject: [PATCH] introduce post-customize post-customize.sh will be execute with wittinobi-init --- Makefile | 6 +++++- customize/.gitignore | 1 + customize/post-customize.sh | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 customize/.gitignore create mode 100755 customize/post-customize.sh diff --git a/Makefile b/Makefile index f0d9664..f23f43d 100755 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ all: # wittinobi wittinobi-init: - $(MAKE) prerequisites bootstrap + $(MAKE) prerequisites bootstrap post-customize @echo "" @echo ' ============================================================================== ' @echo -e " \033[32mmake wittinobi-init done\033[0m" @@ -162,6 +162,10 @@ includes-and-libs: modules: $(MAKE) $(TARGETPREFIX)/lib/modules +# post customize +post-customize: $(BASE_DIR)/customize/post-customize.sh + $(BASE_DIR)/customize/post-customize.sh + # neutrino.mk neutrino: $(MAKE) $(D)/neutrino-hd diff --git a/customize/.gitignore b/customize/.gitignore new file mode 100644 index 0000000..c97f963 --- /dev/null +++ b/customize/.gitignore @@ -0,0 +1 @@ +*.sh diff --git a/customize/post-customize.sh b/customize/post-customize.sh new file mode 100755 index 0000000..13f4793 --- /dev/null +++ b/customize/post-customize.sh @@ -0,0 +1,2 @@ +#!/bin/sh + -- 2.39.5