From 3e10e96700aa4b3bcb7341a8ae092d5634006dce Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 19 Oct 2017 11:43:53 +0200 Subject: [PATCH 1/3] - skel-root/ax: fix handling of etc/profile.local --- skel-root/axtech/ax/etc/profile | 4 ++-- skel-root/axtech/ax/etc/profile.local | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/skel-root/axtech/ax/etc/profile b/skel-root/axtech/ax/etc/profile index 8708c54e..f45d858f 100644 --- a/skel-root/axtech/ax/etc/profile +++ b/skel-root/axtech/ax/etc/profile @@ -13,5 +13,5 @@ alias mc='mc -a' alias sc='setconsole' alias sr='setconsole -r' -# Add your own modifications to /var/etc/profile.local! -test -e /var/etc/profile.local && . /var/etc/profile.local +# Add your own modifications to /etc/profile.local! +test -e /etc/profile.local && . /etc/profile.local diff --git a/skel-root/axtech/ax/etc/profile.local b/skel-root/axtech/ax/etc/profile.local index 8347d08d..119812ec 100644 --- a/skel-root/axtech/ax/etc/profile.local +++ b/skel-root/axtech/ax/etc/profile.local @@ -1 +1 @@ -# /var/etc/profile.local: your profile modifications for the shell +# /etc/profile.local: your profile modifications for the shell From f3f0a3825c39c550c2715591851a9d18fa75bf19 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 19 Oct 2017 13:36:09 +0200 Subject: [PATCH 2/3] - add showiframe target --- make/plugins.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/make/plugins.mk b/make/plugins.mk index a27a6015..46e02f11 100644 --- a/make/plugins.mk +++ b/make/plugins.mk @@ -478,6 +478,16 @@ $(LIBPLUG)/oscammon.so: $(LIBPLUG) $(VARCONF) cp -f oscammon.cfg $(LIBPLUG)/ && \ cp -f oscammon_hint.png $(LIBPLUG)/ +# showiframe +showiframe: $(SOURCE_DIR)/$(NI_NEUTRINO-PLUGINS) $(BIN)/showiframe +$(BIN)/showiframe: $(BIN) + pushd $(SOURCE_DIR)/$(NI_NEUTRINO-PLUGINS)/showiframe && \ + $(TARGET)-gcc $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \ + \ + showiframe.c \ + \ + -o $@ + # shellexec shellexec: $(SOURCE_DIR)/$(NI_NEUTRINO-PLUGINS) $(LIBPLUG)/shellexec.so $(LIBPLUG)/shellexec.so: $(D)/freetype $(LIBPLUG) $(SHAREFLEX) $(VARCONF) $(BIN) From 5478e27857d198eec0dae0a8577660c59b64165e Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 19 Oct 2017 13:36:09 +0200 Subject: [PATCH 3/3] - add showiframe to ax-image --- make/ni.mk | 1 + make/plugins.mk | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/make/ni.mk b/make/ni.mk index 0b5588f8..7bde2890 100644 --- a/make/ni.mk +++ b/make/ni.mk @@ -47,6 +47,7 @@ ni-image: @echo "starting 'make $@' build with "$(NUM_CPUS)" threads!" make -j$(NUM_CPUS) neutrino make plugins-all + make plugins-$(BOXSERIES) make fbshot make -j$(NUM_CPUS) luacurl make -j$(NUM_CPUS) timezone diff --git a/make/plugins.mk b/make/plugins.mk index 46e02f11..59c20e91 100644 --- a/make/plugins.mk +++ b/make/plugins.mk @@ -73,6 +73,12 @@ plugins-all: $(D)/neutrino \ doscam-webif-skin \ playlists +plugins-hd1: # nothing to do +plugins-hd2: # nothing to do + +plugins-ax: \ + showiframe + ################ ### plugins ### ################