Compare commits

..

5 Commits

Author SHA1 Message Date
Lee Miller c68f4ed285
Increase the verbosity for kernel-custom build 2023-11-23 02:03:46 +02:00
Lee Miller 479052dd59
Trying to apply optimisations from #30 2023-11-23 02:01:27 +02:00
Lee Miller 2a3d437329
Try to build a special package and copy the vmlinux, built as a side effect 2023-11-23 01:59:19 +02:00
Lee Miller 2e492e738a
Edit the kernel config template - add HWMON and NVME 2023-11-23 01:58:25 +02:00
Lee Miller 42ca3e439b
Remove reverting of the i2c-tools package - fixed upstream
buildbot/multibuild_parent Build done. Details
buildbot/travis_bionic Build done. Details
buildbot/job/openwrt Build done. Details
2023-11-22 01:28:47 +02:00
2 changed files with 5 additions and 41 deletions

View File

@ -12,7 +12,7 @@
set -x
renice -n 19 $$
export MAKEOPTS="-j $(nproc)" # FIXME: not sure why export
export MAKEOPTS="-j$(nproc)" # FIXME: not sure why export
tar -xJf /Downloads/openwrt-sdk-${OPENWRT_VERSION}-*.tar.xz
@ -29,8 +29,6 @@ sed -i "s/\(packages.git\)\^.*/\1;openwrt-22.03/g" feeds.conf
./scripts/feeds update -a
./scripts/feeds install -a
git apply ${pwd}/patches/i2c-tools-revert.patch
cat << "EOF" >> target/linux/${OPENWRT_TARGET}/${OPENWRT_DEVICE}/config-5.10
CONFIG_HWMON=y
CONFIG_NVME_CORE=y
@ -43,15 +41,15 @@ make defconfig
# Enable collectd network encryption
echo "CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK=y" >> .config
make package/i2c-tools/compile
# FIXME: need to extend the regexp for errors
make $MAKEOPTS V=s package/kernel-custom/compile 2>&1 | grep '^make'
make $MAKEOPTS package/i2c-tools/compile
make package/kmod-i2c-mux-pinctrl/compile
make package/kmod-rtc-pcf85063/compile
make package/nvme-cli/compile
make package/ansible-core/compile
make package/asterisk-chan-quectel/compile
make package/collectd/compile
make $MAKEOPTS package/collectd/compile
# FIXME: need to extend the regexp for errors
make $MAKEOPTS V=s package/kernel-custom/compile 2>&1 | grep '^make'
sdkdir=$(pwd)
cd ${pwd}

View File

@ -1,34 +0,0 @@
--- a/feeds/packages/utils/i2c-tools/Makefile 2023-10-19 02:48:26.528051917 +0000
+++ b/feeds/packages/utils/i2c-tools/Makefile 2023-10-19 02:50:13.281230932 +0000
@@ -9,7 +9,7 @@
PKG_NAME:=i2c-tools
PKG_VERSION:=4.3
-PKG_RELEASE:=3
+PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@KERNEL/software/utils/i2c-tools
@@ -67,9 +67,8 @@
This package contain the Python3 bindings for Linux SMBus access through i2c-dev.
endef
-PYTHON3_PKG_BUILD_PATH:=py-smbus
-PYTHON3_PKG_WHEEL_NAME:=smbus
-PYTHON3_PKG_WHEEL_VERSION:=1.1
+PYTHON3_PKG_SETUP_ARGS:=
+PYTHON3_PKG_SETUP_DIR:=py-smbus
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
@@ -87,10 +86,6 @@
$(CP) $(PKG_BUILD_DIR)/lib/libi2c.{a,so*} $(1)/usr/lib/
endef
-define Build/Install
- $(call Py3Build/Install)
-endef
-
define Package/libi2c/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/lib/libi2c.so* $(1)/usr/lib/