2015-04-06 22:21:27 +02:00
|
|
|
BUILD=3
|
2015-03-31 16:39:17 +02:00
|
|
|
VERSION=$(shell date +%Y%m%d%H%M)-$(BUILD)
|
2015-03-26 20:15:21 +01:00
|
|
|
CPUS=4
|
2015-03-28 09:36:07 +01:00
|
|
|
STLINUX=/opt/STM/STLinux-2.4
|
|
|
|
TOOLPATH=$(STLINUX)/host/bin
|
|
|
|
TOOLCHAIN=$(STLINUX)/devkit/sh4
|
2015-03-26 20:15:21 +01:00
|
|
|
TOOLCHAIN_KERNEL=$(shell pwd)/toolchain/4.5.3-99/opt/STM/STLinux-2.4/devkit/sh4
|
2015-04-03 13:20:23 +02:00
|
|
|
HOST_ARCH=$(shell uname -m)
|
2015-03-26 20:15:21 +01:00
|
|
|
|
2015-03-28 20:33:17 +01:00
|
|
|
EXTRA_AXE_MODULES_DIR=firmware/initramfs/root/modules_idl4k_7108_ST40HOST_LINUX_32BITS
|
|
|
|
EXTRA_AXE_MODULES=axe_dmx.ko axe_dmxts.ko axe_fe.ko axe_fp.ko axe_i2c.ko \
|
|
|
|
stapi_core_stripped.ko stapi_ioctl_stripped.ko stsys_ioctl.ko \
|
|
|
|
load_modules_list_32BITS.txt load_modules_list_axe_32BITS.txt \
|
|
|
|
load_modules.sh load_env.sh
|
|
|
|
|
|
|
|
ORIG_FILES=main_axe.out mknodes.out
|
|
|
|
|
|
|
|
DROPBEAR=dropbear-2015.67
|
|
|
|
DROPBEAR_SBIN_FILES=dropbear
|
|
|
|
DROPBEAR_BIN_FILES=dbclient dropbearconvert dropbearkey scp
|
|
|
|
|
2015-03-28 09:36:07 +01:00
|
|
|
define GIT_CLONE
|
|
|
|
@mkdir -p apps/
|
|
|
|
git clone $(1) apps/$(2)
|
|
|
|
endef
|
|
|
|
|
2015-03-28 20:33:17 +01:00
|
|
|
define WGET
|
|
|
|
@mkdir -p apps/
|
|
|
|
wget --no-verbose -O $(2) $(1)
|
|
|
|
endef
|
2015-03-28 09:36:07 +01:00
|
|
|
|
2015-03-26 20:55:54 +01:00
|
|
|
#
|
|
|
|
# all
|
|
|
|
#
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: kernel-axe-modules kernel
|
|
|
|
|
2015-03-31 16:39:17 +02:00
|
|
|
.PHONY: release
|
2015-03-31 18:50:27 +02:00
|
|
|
release: kernel-axe-modules out/idl4k.scr out/idl4k.recovery
|
2015-03-31 16:39:17 +02:00
|
|
|
-ls -la out
|
|
|
|
|
2015-03-31 18:50:27 +02:00
|
|
|
.PHONY: dist
|
|
|
|
dist:
|
|
|
|
-mkdir -p dist
|
|
|
|
cp out/*.fw out/*.usb out/*.flash dist
|
|
|
|
|
2015-03-26 20:55:54 +01:00
|
|
|
#
|
|
|
|
# create CPIO
|
|
|
|
#
|
|
|
|
|
2015-03-28 09:36:07 +01:00
|
|
|
fs.cpio: minisatip
|
2015-03-27 21:55:18 +01:00
|
|
|
fakeroot tools/do_min_fs.py \
|
2015-03-31 16:39:17 +02:00
|
|
|
-r "$(VERSION)" \
|
|
|
|
-b "bash strace" \
|
2015-03-28 20:33:17 +01:00
|
|
|
$(foreach m,$(EXTRA_AXE_MODULES), -e "$(EXTRA_AXE_MODULES_DIR)/$(m):lib/modules/$(m)") \
|
|
|
|
$(foreach m,$(ORIG_FILES), -e "$(EXTRA_AXE_MODULES_DIR)/../$(m):root") \
|
|
|
|
$(foreach f,$(DROPBEAR_SBIN_FILES), -e "apps/$(DROPBEAR)/$(f):sbin/$(f)") \
|
|
|
|
$(foreach f,$(DROPBEAR_BIN_FILES), -e "apps/$(DROPBEAR)/$(f):usr/bin/$(f)") \
|
2015-03-31 16:39:17 +02:00
|
|
|
-e "apps/minisatip/minisatip:sbin/minisatip" \
|
|
|
|
-e "apps/minisatip/icons/lr.jpg:usr/share/minisatip/icons/lr.jpg" \
|
|
|
|
-e "apps/minisatip/icons/lr.png:usr/share/minisatip/icons/lr.png" \
|
|
|
|
-e "apps/minisatip/icons/sm.jpg:usr/share/minisatip/icons/sm.jpg" \
|
|
|
|
-e "apps/minisatip/icons/sm.png:usr/share/minisatip/icons/sm.png"
|
2015-03-27 21:55:18 +01:00
|
|
|
|
|
|
|
.PHONY: fs-list
|
|
|
|
fs-list:
|
|
|
|
cpio -itv < kernel/rootfs-idl4k.cpio
|
2015-03-31 16:39:17 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# uboot
|
|
|
|
#
|
|
|
|
|
2015-03-31 18:50:27 +02:00
|
|
|
out/idl4k.recovery: patches/uboot-recovery.script
|
|
|
|
$(TOOLPATH)/mkimage -T script -C none \
|
|
|
|
-n 'Restore original idl4k fw' \
|
|
|
|
-d patches/uboot-recovery.script out/idl4k.recovery
|
|
|
|
|
|
|
|
out/idl4k.scr: patches/uboot.script patches/uboot-flash.script out/satip-axe-$(VERSION).fw
|
|
|
|
rm -f out/*.scr out/*.usb out/*.flash out/*.recovery
|
2015-03-31 16:39:17 +02:00
|
|
|
sed -e 's/@VERSION@/$(VERSION)/g' \
|
|
|
|
< patches/uboot.script > out/uboot.script
|
2015-03-31 18:50:27 +02:00
|
|
|
sed -e 's/@VERSION@/$(VERSION)/g' \
|
|
|
|
< patches/uboot-flash.script > out/uboot-flash.script
|
|
|
|
$(TOOLPATH)/mkimage -T script -C none \
|
|
|
|
-n 'SAT>IP AXE fw v$(VERSION)' \
|
|
|
|
-d out/uboot.script out/satip-axe-$(VERSION).usb
|
2015-03-31 16:39:17 +02:00
|
|
|
$(TOOLPATH)/mkimage -T script -C none \
|
|
|
|
-n 'SAT>IP AXE fw v$(VERSION)' \
|
2015-03-31 18:50:27 +02:00
|
|
|
-d out/uboot-flash.script out/satip-axe-$(VERSION).flash
|
|
|
|
ln -sf satip-axe-$(VERSION).usb out/idl4k.scr
|
|
|
|
rm out/uboot.script out/uboot-flash.script
|
2015-03-31 16:39:17 +02:00
|
|
|
|
|
|
|
out/satip-axe-$(VERSION).fw: kernel/arch/sh/boot/uImage.gz
|
|
|
|
mkdir -p out
|
|
|
|
rm -f out/*.fw
|
|
|
|
cp -av kernel/arch/sh/boot/uImage.gz out/satip-axe-$(VERSION).fw
|
|
|
|
|
2015-03-26 20:15:21 +01:00
|
|
|
#
|
|
|
|
# kernel
|
|
|
|
#
|
|
|
|
|
|
|
|
kernel/.config: toolchain/4.5.3-99/opt/STM/STLinux-2.4/devkit/sh4/bin/sh4-linux-gcc-4.5.3
|
|
|
|
make -C kernel -j $(CPUS) ARCH=sh CROSS_COMPILE=$(TOOLCHAIN_KERNEL)/bin/sh4-linux- idl4k_defconfig
|
|
|
|
|
2015-03-31 16:39:17 +02:00
|
|
|
kernel/arch/sh/boot/uImage.gz: toolchain/4.5.3-99/opt/STM/STLinux-2.4/devkit/sh4/bin/sh4-linux-gcc-4.5.3 kernel/.config fs.cpio
|
2015-03-26 20:55:54 +01:00
|
|
|
mv fs.cpio kernel/rootfs-idl4k.cpio
|
2015-03-26 20:15:21 +01:00
|
|
|
make -C kernel -j $(CPUS) ARCH=sh CROSS_COMPILE=$(TOOLCHAIN_KERNEL)/bin/sh4-linux- modules
|
2015-03-26 20:55:54 +01:00
|
|
|
make -C kernel -j ${CPUS} PATH="$(PATH):$(TOOLPATH)" \
|
|
|
|
ARCH=sh CROSS_COMPILE=$(TOOLCHAIN_KERNEL)/bin/sh4-linux- uImage.gz
|
2015-03-26 20:15:21 +01:00
|
|
|
|
2015-03-31 16:39:17 +02:00
|
|
|
.PHONY: kernel
|
|
|
|
kernel: kernel/arch/sh/boot/uImage.gz
|
|
|
|
|
2015-03-26 20:15:21 +01:00
|
|
|
.PHONY: kernel-mrproper
|
|
|
|
kernel-mrproper:
|
|
|
|
make -C kernel ARCH=sh CROSS_COMPILE=$(TOOLCHAIN_KERNEL)/bin/sh4-linux- mrproper
|
|
|
|
|
|
|
|
define RPM_UNPACK
|
|
|
|
@mkdir -p $(1)
|
|
|
|
cd $(1) ; rpm2cpio ../$(2) | cpio -idv
|
|
|
|
endef
|
|
|
|
|
|
|
|
toolchain/4.5.3-99/opt/STM/STLinux-2.4/devkit/sh4/bin/sh4-linux-gcc-4.5.3:
|
|
|
|
$(call RPM_UNPACK,toolchain/4.5.3-99,stlinux24-cross-sh4-binutils-2.24.51.0.3-76.i386.rpm)
|
|
|
|
$(call RPM_UNPACK,toolchain/4.5.3-99,stlinux24-cross-sh4-cpp-4.5.3-99.i386.rpm)
|
|
|
|
$(call RPM_UNPACK,toolchain/4.5.3-99,stlinux24-cross-sh4-gcc-4.5.3-99.i386.rpm)
|
|
|
|
|
|
|
|
#
|
|
|
|
# extract kernel modules from firmware
|
|
|
|
#
|
|
|
|
|
|
|
|
.PHONY: kernel-axe-modules
|
|
|
|
kernel-axe-modules: firmware/initramfs/root/modules_idl4k_7108_ST40HOST_LINUX_32BITS/axe_dmx.ko
|
|
|
|
|
|
|
|
firmware/initramfs/root/modules_idl4k_7108_ST40HOST_LINUX_32BITS/axe_dmx.ko:
|
|
|
|
cd firmware ; ../tools/cpio-idl4k-bin.sh extract
|
|
|
|
chmod -R u+rw firmware/initramfs
|
|
|
|
|
2015-04-02 21:42:21 +02:00
|
|
|
#
|
|
|
|
# syscall dump
|
|
|
|
#
|
|
|
|
|
2015-04-03 13:20:23 +02:00
|
|
|
tools/syscall-dump.so: tools/syscall-dump.c
|
|
|
|
$(TOOLCHAIN)/bin/sh4-linux-gcc -o tools/syscall-dump.o -c -fPIC -Wall tools/syscall-dump.c
|
|
|
|
$(TOOLCHAIN)/bin/sh4-linux-gcc -o tools/syscall-dump.so -shared -rdynamic tools/syscall-dump.o -ldl
|
|
|
|
|
|
|
|
tools/syscall-dump.so.$(HOST_ARCH): tools/syscall-dump.c
|
|
|
|
gcc -o tools/syscall-dump.o.$(HOST_ARCH) -c -fPIC -Wall tools/syscall-dump.c
|
|
|
|
gcc -o tools/syscall-dump.so.$(HOST_ARCH) -shared -rdynamic tools/syscall-dump.o.$(HOST_ARCH) -ldl
|
|
|
|
|
|
|
|
.PHONY: s2i_dump
|
|
|
|
s2i_dump: tools/syscall-dump.so
|
|
|
|
if test -z "$(SATIP_HOST)"; then echo "Define SATIP_HOST variable"; exit 1; fi
|
|
|
|
scp tools/syscall-dump.so \
|
|
|
|
tools/s2i-dump.sh \
|
|
|
|
firmware/initramfs/root/s2i.bin \
|
|
|
|
firmware/initramfs/usr/lib/libuuid.so.1 \
|
|
|
|
firmware/initramfs/usr/lib/libcurl.so.4 \
|
|
|
|
firmware/initramfs/usr/lib/liboauth.so.0 \
|
|
|
|
firmware/initramfs/usr/lib/libsoup-2.4.so.1 \
|
|
|
|
firmware/initramfs/usr/lib/libgio-2.0.so.0 \
|
|
|
|
firmware/initramfs/usr/lib/libgobject-2.0.so.0 \
|
|
|
|
firmware/initramfs/usr/lib/libgmodule-2.0.so.0 \
|
|
|
|
firmware/initramfs/usr/lib/libgthread-2.0.so.0 \
|
|
|
|
firmware/initramfs/usr/lib/libssl.so.1.0.0 \
|
|
|
|
firmware/initramfs/usr/lib/libcrypto.so.1.0.0 \
|
|
|
|
firmware/initramfs/usr/lib/libxml2.so.2 \
|
|
|
|
root@$(SATIP_HOST):/usr/lib
|
2015-04-03 21:10:51 +02:00
|
|
|
scp firmware/initramfs/root/default_sl.json \
|
|
|
|
firmware/initramfs/root/*.txt \
|
|
|
|
firmware/initramfs/root/*.m3u \
|
|
|
|
root@$(SATIP_HOST):/root
|
2015-04-03 13:20:23 +02:00
|
|
|
scp firmware/initramfs/usr/local/bin/mdnsd root@$(SATIP_HOST):/usr/bin
|
2015-04-03 21:10:51 +02:00
|
|
|
scp $(TOOLCHAIN)/target/bin/netstat root@$(SATIP_HOST):/bin
|
2015-04-02 21:42:21 +02:00
|
|
|
|
2015-03-28 09:36:07 +01:00
|
|
|
#
|
|
|
|
# minisatip
|
|
|
|
#
|
|
|
|
|
2015-03-29 21:31:38 +02:00
|
|
|
apps/minisatip/axe.h:
|
2015-03-28 09:36:07 +01:00
|
|
|
$(call GIT_CLONE,https://github.com/catalinii/minisatip.git,minisatip)
|
2015-03-29 21:31:38 +02:00
|
|
|
cd apps/minisatip; patch -p1 < ../../patches/minisatip-axe.patch
|
2015-03-28 09:36:07 +01:00
|
|
|
|
2015-03-29 21:31:38 +02:00
|
|
|
apps/minisatip/minisatip: apps/minisatip/axe.h
|
2015-03-28 09:36:07 +01:00
|
|
|
make -C apps/minisatip \
|
|
|
|
CC=$(TOOLCHAIN)/bin/sh4-linux-gcc \
|
2015-03-29 16:39:13 +02:00
|
|
|
CFLAGS="-O2 -DAXE=1 -DSYS_DVBT2=16"
|
2015-03-28 09:36:07 +01:00
|
|
|
|
2015-03-28 20:33:17 +01:00
|
|
|
.PHONY: minisatip
|
|
|
|
minisatip: apps/minisatip/minisatip
|
|
|
|
|
2015-03-29 21:31:38 +02:00
|
|
|
.PHONY: minisatip-clean
|
|
|
|
minisatip-clean:
|
|
|
|
rm -rf apps/minisatip
|
|
|
|
|
2015-03-28 20:33:17 +01:00
|
|
|
#
|
|
|
|
# dropbear
|
|
|
|
#
|
|
|
|
|
|
|
|
apps/$(DROPBEAR)/configure:
|
|
|
|
$(call WGET,https://matt.ucc.asn.au/dropbear/$(DROPBEAR).tar.bz2,apps/$(DROPBEAR).tar.bz2)
|
|
|
|
tar -C apps -xjf apps/$(DROPBEAR).tar.bz2
|
|
|
|
|
|
|
|
apps/$(DROPBEAR)/dropbear: apps/$(DROPBEAR)/configure
|
|
|
|
cd apps/$(DROPBEAR) && \
|
|
|
|
CC=$(TOOLCHAIN)/bin/sh4-linux-gcc \
|
|
|
|
./configure \
|
|
|
|
--host=sh4-linux \
|
|
|
|
--prefix=/ \
|
|
|
|
--disable-lastlog \
|
|
|
|
--disable-utmp \
|
|
|
|
--disable-utmpx \
|
|
|
|
--disable-wtmp \
|
|
|
|
--disable-wtmpx
|
|
|
|
make -C apps/$(DROPBEAR) PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp"
|
|
|
|
|
|
|
|
.PHONY: dropbear
|
|
|
|
dropbear: apps/$(DROPBEAR)/dropbear
|
|
|
|
|
2015-03-26 20:15:21 +01:00
|
|
|
#
|
|
|
|
# clean all
|
|
|
|
#
|
2015-03-26 20:55:54 +01:00
|
|
|
|
2015-03-26 20:15:21 +01:00
|
|
|
.PHONY: clean
|
|
|
|
clean: kernel-mrproper
|
|
|
|
rm -rf firmware/initramfs
|
|
|
|
rm -rf toolchain/4.5.3-99
|
2015-04-03 13:20:23 +02:00
|
|
|
rm -rf tools/syscall-dump.o* tools/syscall-dump.s*
|