From: Markham Date: Thu, 24 Oct 2019 17:39:57 +0000 (+0200) Subject: use own SKEL_ROOT_DIR for zgemma stb's X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=241191ad1f769ec96a0ae22c5cbf546468e05c4d;p=bs-cst-neutrino-hd.git use own SKEL_ROOT_DIR for zgemma stb's --- diff --git a/make/bootstrap.mk b/make/bootstrap.mk index efb661e..75c1568 100755 --- a/make/bootstrap.mk +++ b/make/bootstrap.mk @@ -241,8 +241,15 @@ skeleton: | $(TARGETPREFIX) else \ cp --remove-destination -a skel-root-hd1/* $(TARGETPREFIX)/; \ fi \ + elif [ $(BOXMODEL) = "h7" ]; then \ + if [ -n $(SKEL_ROOT_DIR) ]; then \ + [ ! -e $(BASE_DIR)/my-skel-root-h7 ] && ln -s $(SKEL_ROOT_DIR) $(BASE_DIR)/my-skel-root-h7; \ + cp --remove-destination -a my-skel-root-h7/* $(TARGETPREFIX)/; \ + else \ + cp --remove-destination -a skel-root-h7/* $(TARGETPREFIX)/; \ + fi \ else \ - if [ $(PLATFORM) = "bcm7251s" ]; then \ + if [ $(BOXMODEL) = "hd51" -o $(BOXMODEL) = "bre2ze4k"]; then \ [ ! -e $(BASE_DIR)/my-skel-root-arm ] && ln -s $(SKEL_ROOT_DIR) $(BASE_DIR)/my-skel-root-arm; \ cp --remove-destination -a my-skel-root-arm/* $(TARGETPREFIX)/; \ else \