Browse Source

- set up default parallelism

master
vanhofen 6 years ago
parent
commit
2559a70d7a
  1. 6
      make/crosstool.mk
  2. 17
      make/environment-build.mk
  3. 6
      make/kernel-coolstream.mk
  4. 84
      make/ni.mk

6
make/crosstool.mk

@ -55,7 +55,7 @@ crosstool-arm-hd1: CROSS_DIR-check $(SOURCE_DIR)/$(NI_LINUX-KERNEL)
tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \ tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \
mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \ mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \
cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \ cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \
sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(NUM_CPUS)@" .config && \ sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(PARALLEL_JOBS)@" .config && \
export NI_BASE_DIR=$(BASE_DIR) && \ export NI_BASE_DIR=$(BASE_DIR) && \
export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \ export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \
export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \ export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \
@ -86,7 +86,7 @@ crosstool-arm-hd2: CROSS_DIR-check $(ARCHIVE)/gcc-linaro-$(GCC_VER).tar.xz $(SOU
tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \ tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \
mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \ mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \
cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \ cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \
sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(NUM_CPUS)@" .config && \ sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(PARALLEL_JOBS)@" .config && \
export NI_BASE_DIR=$(BASE_DIR) && \ export NI_BASE_DIR=$(BASE_DIR) && \
export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \ export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \
export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \ export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \
@ -117,7 +117,7 @@ crosstool-arm-hd51: CROSS_DIR-check
tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \ tar cf linux-$(KERNEL_VERSION).tar --exclude-vcs -C $(SOURCE_DIR)/$(NI_LINUX-KERNEL) . && \
mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \ mv linux-$(KERNEL_VERSION).tar $(BUILD_TMP)/crosstool-ng/targets/src/ && \
cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \ cp -a $(CONFIGS)/ct-ng-$(BOXTYPE)-$(BOXSERIES).config .config && \
sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(NUM_CPUS)@" .config && \ sed -i "s@^CT_PARALLEL_JOBS=.*@CT_PARALLEL_JOBS=$(PARALLEL_JOBS)@" .config && \
export NI_BASE_DIR=$(BASE_DIR) && \ export NI_BASE_DIR=$(BASE_DIR) && \
export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \ export NI_CUSTOM_KERNEL=$(BUILD_TMP)/crosstool-ng/targets/src/linux-$(KERNEL_VERSION).tar && \
export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \ export NI_CUSTOM_KERNEL_VERSION=$(KERNEL_VERSION) && \

17
make/environment-build.mk

@ -3,8 +3,6 @@
# #
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
NUM_CPUS=$$(expr `grep -c ^processor /proc/cpuinfo`)
CONFIG_SITE = CONFIG_SITE =
export CONFIG_SITE export CONFIG_SITE
@ -13,7 +11,7 @@ export LD_LIBRARY_PATH
SHELL := /bin/bash SHELL := /bin/bash
BASE_DIR := $(shell pwd) # -----------------------------------------------------------------------------
# assign box environment # assign box environment
@ -111,6 +109,8 @@ else ifeq ($(BOXTYPE), armbox)
BOXARCH = arm BOXARCH = arm
endif endif
# -----------------------------------------------------------------------------
ifndef BOXTYPE ifndef BOXTYPE
$(error BOXTYPE not set) $(error BOXTYPE not set)
endif endif
@ -130,8 +130,17 @@ ifndef BOXMODEL
$(error BOXMODEL not set) $(error BOXMODEL not set)
endif endif
# -----------------------------------------------------------------------------
# set up default parallelism
PARALLEL_JOBS := $$(expr `grep -c ^processor /proc/cpuinfo`)
override MAKE = make $(if $(findstring j,$(filter-out --%,$(MAKEFLAGS))),,-j$(PARALLEL_JOBS))
MAKEFLAGS += --no-print-directory MAKEFLAGS += --no-print-directory
# -----------------------------------------------------------------------------
BASE_DIR := $(shell pwd)
MAINTAINER ?= NI-Team MAINTAINER ?= NI-Team
WHOAMI := $(shell id -un) WHOAMI := $(shell id -un)
ARCHIVE = $(BASE_DIR)/download ARCHIVE = $(BASE_DIR)/download
@ -169,6 +178,8 @@ TARGET_INCLUDE_DIR = $(TARGET_DIR)/include
# create debug image # create debug image
DEBUG ?= no DEBUG ?= no
# -----------------------------------------------------------------------------
KERNEL_NAME = NI $(shell echo $(BOXMODEL) | sed 's/.*/\u&/') Kernel KERNEL_NAME = NI $(shell echo $(BOXMODEL) | sed 's/.*/\u&/') Kernel
ifeq ($(BOXSERIES), hd1) ifeq ($(BOXSERIES), hd1)

6
make/kernel-coolstream.mk

@ -21,15 +21,15 @@ kernel-coolstream-install: kernel-coolstream-install-$(BOXSERIES)
kernel-coolstream-install-all: kernel-coolstream-install-all:
make clean BOXFAMILY=nevis make clean BOXFAMILY=nevis
make -j$(NUM_CPUS) kernel-coolstream-hd1 BOXFAMILY=nevis $(MAKE) kernel-coolstream-hd1 BOXFAMILY=nevis
make kernel-coolstream-install-hd1 BOXFAMILY=nevis make kernel-coolstream-install-hd1 BOXFAMILY=nevis
# #
make clean BOXFAMILY=apollo make clean BOXFAMILY=apollo
make -j$(NUM_CPUS) kernel-coolstream-hd2 BOXFAMILY=apollo $(MAKE) kernel-coolstream-hd2 BOXFAMILY=apollo
make kernel-coolstream-install-hd2 BOXFAMILY=apollo make kernel-coolstream-install-hd2 BOXFAMILY=apollo
# #
make clean BOXFAMILY=kronos make clean BOXFAMILY=kronos
make -j$(NUM_CPUS) kernel-coolstream-hd2 BOXFAMILY=kronos $(MAKE) kernel-coolstream-hd2 BOXFAMILY=kronos
make kernel-coolstream-install-hd2 BOXFAMILY=kronos make kernel-coolstream-install-hd2 BOXFAMILY=kronos
# #
make clean BOXFAMILY=nevis > /dev/null 2>&1 make clean BOXFAMILY=nevis > /dev/null 2>&1

84
make/ni.mk

@ -20,63 +20,63 @@ personalized-image:
image \ image \
ni-image: ni-image:
@echo "starting 'make $@' build with "$(NUM_CPUS)" threads!" @echo "starting 'make $@' build with "$(PARALLEL_JOBS)" threads!"
make -j$(NUM_CPUS) neutrino $(MAKE) neutrino
make plugins-all make plugins-all
make plugins-$(BOXSERIES) make plugins-$(BOXSERIES)
make fbshot make fbshot
make -j$(NUM_CPUS) luacurl $(MAKE) luacurl
make -j$(NUM_CPUS) timezone $(MAKE) timezone
make -j$(NUM_CPUS) smartmontools $(MAKE) smartmontools
make -j$(NUM_CPUS) sg3-utils $(MAKE) sg3-utils
make -j$(NUM_CPUS) nfs-utils $(MAKE) nfs-utils
make -j$(NUM_CPUS) procps-ng $(MAKE) procps-ng
make -j$(NUM_CPUS) nano $(MAKE) nano
make hd-idle make hd-idle
make -j$(NUM_CPUS) e2fsprogs $(MAKE) e2fsprogs
make -j$(NUM_CPUS) ntfs-3g $(MAKE) ntfs-3g
make -j$(NUM_CPUS) exfat-utils $(MAKE) exfat-utils
make -j$(NUM_CPUS) vsftpd $(MAKE) vsftpd
make -j$(NUM_CPUS) djmount $(MAKE) djmount
make -j$(NUM_CPUS) ushare $(MAKE) ushare
make -j$(NUM_CPUS) xupnpd $(MAKE) xupnpd
make inadyn make inadyn
make -j$(NUM_CPUS) samba $(MAKE) samba
make dropbear make dropbear
make -j$(NUM_CPUS) hdparm $(MAKE) hdparm
make -j$(NUM_CPUS) busybox $(MAKE) busybox
make -j$(NUM_CPUS) coreutils $(MAKE) coreutils
make -j$(NUM_CPUS) dosfstools $(MAKE) dosfstools
make -j$(NUM_CPUS) wpa_supplicant $(MAKE) wpa_supplicant
make -j$(NUM_CPUS) mtd-utils $(MAKE) mtd-utils
make -j$(NUM_CPUS) wget $(MAKE) wget
make -j$(NUM_CPUS) iconv $(MAKE) iconv
make -j$(NUM_CPUS) streamripper $(MAKE) streamripper
ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd2 hd51)) ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd2 hd51))
make channellogos make channellogos
make -j$(NUM_CPUS) less $(MAKE) less
make -j$(NUM_CPUS) parted $(MAKE) parted
make -j$(NUM_CPUS) openvpn $(MAKE) openvpn
make -j$(NUM_CPUS) openssh $(MAKE) openssh
make -j$(NUM_CPUS) ethtool $(MAKE) ethtool
ifneq ($(BOXMODEL), kronos_v2) ifneq ($(BOXMODEL), kronos_v2)
make -j$(NUM_CPUS) bash $(MAKE) bash
make -j$(NUM_CPUS) iperf $(MAKE) iperf
make -j$(NUM_CPUS) minicom $(MAKE) minicom
make -j$(NUM_CPUS) mc $(MAKE) mc
endif endif
ifeq ($(BOXSERIES), hd51) ifeq ($(BOXSERIES), hd51)
make -j$(NUM_CPUS) ofgwrite $(MAKE) ofgwrite
make -j$(NUM_CPUS) aio-grab $(MAKE) aio-grab
make -j$(NUM_CPUS) dvbsnoop $(MAKE) dvbsnoop
endif endif
ifeq ($(DEBUG), yes) ifeq ($(DEBUG), yes)
make -j$(NUM_CPUS) strace $(MAKE) strace
make -j$(NUM_CPUS) valgrind $(MAKE) valgrind
make -j$(NUM_CPUS) gdb $(MAKE) gdb
endif endif
endif endif
make -j$(NUM_CPUS) kernel-$(BOXTYPE)-modules $(MAKE) kernel-$(BOXTYPE)-modules
make autofs5 make autofs5
make scripts make scripts
make init-scripts make init-scripts

Loading…
Cancel
Save