Jump to content

RSS Bot

Bot
  • Posts

    4209
  • Joined

  • Last visited

    Never

Everything posted by RSS Bot

  1. Description What comes out of automation - no other changes. How Has This Been Tested? Haven't been tested, CI will do this job. Checklist: [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  2. Description Update odroidxu4-current kernel to 6.6.51. How Has This Been Tested? [x] Reboot of my Odroid HC1 Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  3. As guests at the STMicroelectronics booth, Collabora will be demonstrating how the STM32MP2 chip is perfectly suited for enabling edge AI solutions in industrial environments. View the full article
  4. Update maintainers and board status synced status from the database rename to .csc where we don't have anyone If you want to become a board maintainer, adjust data here. Ref: Board Maintainers Procedures and Guidelines View the full article
  5. Description This exposes the ITC content type provided by hdmi spec to v4l2. This allows user space applications to query the driver using V4L2_CID_DV_RX_IT_CONTENT_TYPE. This way user applications can see not only if a hdmi is plugged in or not, but also what type of video is being transmitted. For my use case specifically, I just want to know if the recieved type is no type (V4L2_DV_IT_CONTENT_TYPE_NO_ITC) or literally anything else. This would let me detect when my main computer's goes to sleep with the hdmi out from the main computer plugged into the OP5+ HDMI in. Without this patch, there's no way to tell that happened, as for my gpu/hdmi plug, it keeps the hot plug detection pin high the whole time. How Has This Been Tested? tested on orange pi 5 plus Checklist: [ x] I have performed a self-review of my own code [ x] My changes generate no new warnings View the full article
  6. Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. GitHub issue reference: Jira reference number [AR-9999] Documentation summary for feature / change Please delete this section if entry to main documentation is not needed. If documentation entry is predicted, please provide key elements for further implementation into main documentation and set label to "Needs Documentation". You are welcome to open a PR to documentation or you can leave following information for technical writer: [ ] short description (copy / paste of PR title) [ ] summary (description relevant for end users) [ ] example of usage (how to see this in function) How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [ ] Test A [ ] Test B Checklist: Please delete options that are not relevant. [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  7. Description Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project View the full article
  8. Description Minor regression fix for extensions that need to modify the root device, such as LVM and Crypto Root. Fix for newer ubuntu build host requiring re-instantiation of LVM devices mid build process. GitHub issue reference: #7210 Jira reference number AR-2489 How Has This Been Tested? The build process failed before, now builds again. Tested with Jammy and Noble, installed distributions, etc. View the full article
  9. Description Context systemd's cloud-init.target and armbian-firstrun.service will be started concurrently (both are wanted by multi-user.target). Both will try to create SSH host keys by default: armbian-firstrun will always delete SSH host keys and then generate new ones cloud-init.target (by default) will always delete SSH host keys and then generate new ones. Problem When one must run armbian-firstrun and cloud-init, there is no deterministic ordering between the 2 files execution and therefore no one can guarantee which will be last to setup OpenSSH host keys. In my current scenario, host keys are explicitly setup in cloud-init and I would expect armbian-firstrun to not delete keys + no ssh host key generation. Implemented Solution armbian-firstrun support user defined config to optionally regenerate SSH host keys: no: no ssh key deleted + no ssh host key generated. Allow cloud-init to take over this behaviour deterministically. yes (or undefined): ssh host key deleted + generated (compatibility: current armbian behaviour) Documentation summary for feature / change If documentation entry is predicted, please provide key elements for further implementation into main documentation and set label to "Needs Documentation". You are welcome to open a PR to documentation or you can leave following information for technical writer: [x] short description armbian-firstrun: Optionally skip OpenSSH host key regeneration [x] summary To skip armbian-firstrun's OpenSSH host key deletion + regeneration (eg: to let cloud-init set the SSH host keys), then define OPENSSHD_REGENERATE_HOST_KEYS=no in the /path/to/userpatches/config-*.conf file used by ./compile.sh to build the image. [ ] example of usage See above How Has This Been Tested? [ ] qemu-x86 board: build with OPENSSHD_REGENERATE_HOST_KEYS=no and expect armbian-firstrun to not regenerate ssh host keys [ ] [Test B](qemu-x86 board: build without OPENSSHD_REGENERATE_HOST_KEYS set and expect armbian-firstrun to regenerate ssh host keys Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings View the full article
  10. Description HDMI-rx does not properly report if it is plugged out and says that it is plugged in all the time. The cause is the following. There is an irq that is watching a gpio for 5v high. During the plugout method for the driver, the driver resets the device state. If the irq that is watching for gpio 5 volts is not disabled during this time, it triggers on a transient voltage and sets the driver to run the "High"/plugged in logic. By the time the driver reaches the high logic, the gpio is low again, which resets the cycle by re-calling the plugout method. This is probably why @efectn disabled the log in 0a0eb46 , because it's so noisy and spams the logs. I don't know if this is the right solution, but I know it prevents this cycle by disabling the irq during the plugout code sequence. How Has This Been Tested? Tested on orange pi 5 plus Checklist: Please delete options that are not relevant. [ x ] My changes generate no new warnings View the full article
  11. Description ArmSoM CM5 is a rk3576 SoM compitable with raspberrypi CM4 carrier board. And CM5 IO is the official carrier board from ArmSoM. More info: https://docs.armsom.org/armsom-cm5 https://docs.armsom.org/armsom-cm5-io How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [x] ./compile.sh BOARD=armsom-cm5-io BRANCH=vendor BUILD_MINIMAL=no DEB_COMPRESS=xz KERNEL_CONFIGURE=no RELEASE=noble KERNEL_GIT=shallow BUILD_DESKTOP=yes DESKTOP_APPGROUPS_SELECTED= DESKTOP_ENVIRONMENT=gnome DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base [x] Tested with emmc and sdcard boot. Notice that sd card can't boot with a blank emmc, at least idbloader.img in emmc is necessary. Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  12. Description Maint. How Has This Been Tested? Not tested. Removing what was added by Hardkernel. Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  13. Description In follow-up to #7183 after the merge of #7127 How Has This Been Tested? [x] build and boot with overlay on bigtreetech pi v1.2 Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  14. Description ROCK Pi E 1000M port is not working due to following error: rk_gmac-dwmac ff540000.ethernet end0: __stmmac_open: Cannot attach to PHY (error: -19) Documentation summary for feature / change this patch fixes above error and make 1000M port usable. How Has This Been Tested? [x] connect 1000M port and see dmesg [x] connect 1000M port and see ip a Checklist: [ ] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  15. Bumps peter-evans/create-pull-request from 6 to 7. Release notes Sourced from peter-evans/create-pull-request's releases. Create Pull Request v7.0.0 :sparkles: Now supports commit signing with bot-generated tokens! See "What's new" below. :writing_hand::robot: Behaviour changes Action input git-token has been renamed branch-token, to be more clear about its purpose. The branch-token is the token that the action will use to create and update the branch. The action now handles requests that have been rate-limited by GitHub. Requests hitting a primary rate limit will retry twice, for a total of three attempts. Requests hitting a secondary rate limit will not be retried. The pull-request-operation output now returns none when no operation was executed. Removed deprecated output environment variable PULL_REQUEST_NUMBER. Please use the pull-request-number action output instead. What's new The action can now sign commits as github-actions[bot] when using GITHUB_TOKEN, or your own bot when using GitHub App tokens. See commit signing for details. Action input draft now accepts a new value always-true. This will set the pull request to draft status when the pull request is updated, as well as on creation. A new action input maintainer-can-modify indicates whether maintainers can modify the pull request. The default is true, which retains the existing behaviour of the action. A new output pull-request-commits-verified returns true or false, indicating whether GitHub considers the signature of the branch's commits to be verified. What's Changed build(deps-dev): bump @types/node from 18.19.36 to 18.19.39 by @dependabot in peter-evans/create-pull-request#3000 build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by @dependabot in peter-evans/create-pull-request#3008 build(deps-dev): bump prettier from 3.3.2 to 3.3.3 by @dependabot in peter-evans/create-pull-request#3018 build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by @dependabot in peter-evans/create-pull-request#3019 build(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by @dependabot in peter-evans/create-pull-request#3035 build(deps-dev): bump @types/node from 18.19.39 to 18.19.41 by @dependabot in peter-evans/create-pull-request#3037 build(deps): bump undici from 6.19.2 to 6.19.4 by @dependabot in peter-evans/create-pull-request#3036 build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by @dependabot in peter-evans/create-pull-request#3038 build(deps-dev): bump @types/node from 18.19.41 to 18.19.42 by @dependabot in peter-evans/create-pull-request#3070 build(deps): bump undici from 6.19.4 to 6.19.5 by @dependabot in peter-evans/create-pull-request#3086 build(deps-dev): bump @types/node from 18.19.42 to 18.19.43 by @dependabot in peter-evans/create-pull-request#3087 build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by @dependabot in peter-evans/create-pull-request#3088 build(deps): bump undici from 6.19.5 to 6.19.7 by @dependabot in peter-evans/create-pull-request#3145 build(deps-dev): bump @types/node from 18.19.43 to 18.19.44 by @dependabot in peter-evans/create-pull-request#3144 Update distribution by @actions-bot in peter-evans/create-pull-request#3154 build(deps): bump undici from 6.19.7 to 6.19.8 by @dependabot in peter-evans/create-pull-request#3213 build(deps-dev): bump @types/node from 18.19.44 to 18.19.45 by @dependabot in peter-evans/create-pull-request#3214 Update distribution by @actions-bot in peter-evans/create-pull-request#3221 build(deps-dev): bump eslint-import-resolver-typescript from 3.6.1 to 3.6.3 by @dependabot in peter-evans/create-pull-request#3255 build(deps-dev): bump @types/node from 18.19.45 to 18.19.46 by @dependabot in peter-evans/create-pull-request#3254 build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by @dependabot in peter-evans/create-pull-request#3256 v7 - signed commits by @peter-evans in peter-evans/create-pull-request#3057 New Contributors @rustycl0ck made their first contribution in peter-evans/create-pull-request#3057 Full Changelog: https://github.com/peter-evans/create-pull-request/compare/v6.1.0...v7.0.0 Create Pull Request v6.1.0 ✨ Adds pull-request-branch as an action output. What's Changed ... (truncated) Commits 8867c4a fix: handle ambiguous argument failure on diff stat (#3312) 6073f54 build(deps-dev): bump @typescript-eslint/eslint-plugin (#3291) 6d01b56 build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 (#3290) 25cf845 build(deps-dev): bump @typescript-eslint/parser from 7.17.0 to 7.18.0 (#3289) d87b980 build(deps-dev): bump @types/node from 18.19.46 to 18.19.48 (#3288) 119d131 build(deps): bump peter-evans/create-pull-request from 6 to 7 (#3283) 73e6230 docs: update readme c0348e8 ci: add v7 to workflow 4320041 feat: signed commits (v7) (#3057) 0c2a66f build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 (#3256) Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) View the full article
  16. Bumps setuptools from 74.1.0 to 74.1.2. Changelog Sourced from setuptools's changelog. v74.1.2 Bugfixes Fixed TypeError in sdist filelist processing by adding support for pathlib Paths for the build_base. (#4615) Removed degraded and deprecated test_integration (easy_install) from the test suite. (#4632) v74.1.1 Bugfixes Fixed TypeError in msvc.EnvironmentInfo.return_env when no runtime redistributables are installed. (#1902) Commits 3b2ef1e Removed test_integration tests (for easy_install). c484f9e Bump version: 74.1.1 → 74.1.2 d8933c5 Merge pull request #4630 from pypa/bugfix/4615 a07de2b Skip test on stdlib distutils 6bf20d9 Add news fragment. 9d4b288 Enable the test 40ee221 Merge https://github.com/pypa/distutils into bugfix/4615 d901698 Add test capturing missed expectation. 91bc99a In sdist.prune_file_list, support build.build_base as a pathlib.Path. 7ee29bd Bump version: 74.1.0 → 74.1.1 Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) View the full article
  17. Bumps oras from 0.1.30 to 0.2.2. Release notes Sourced from oras's releases. Oras Python Release v0.2.2 What's Changed Token Auth Backend: Token request function didn`t set Authorization Header by @mariusbertram in oras-project/oras-py#153 Full Changelog: https://github.com/oras-project/oras-py/compare/0.2.1...0.2.2 Oras Python Release v0.2.1 What's Changed wip: separate auth into backends by @vsoch in oras-project/oras-py#134 docs: use valid media_type format in examples by @tarilabs in oras-project/oras-py#139 [tributors] contributors/update-2024-06-06 by @github-actions in oras-project/oras-py#140 chore: fix typing for manifest_config param of push fn by @tarilabs in oras-project/oras-py#141 core: make push response the one pertaining to Manifest (not config by @tarilabs in oras-project/oras-py#146 fix(core): provider do_request to maintain verify in all request, basic headers by @tarilabs in oras-project/oras-py#145 Enable chunked uploads by @isinyaaa in oras-project/oras-py#150 [tributors] contributors/update-2024-09-04 by @github-actions in oras-project/oras-py#151 New Contributors @tarilabs made their first contribution in oras-project/oras-py#139 @isinyaaa made their first contribution in oras-project/oras-py#150 Full Changelog: https://github.com/oras-project/oras-py/compare/0.1.30...0.2.1 Changelog Sourced from oras's changelog. CHANGELOG This is a manually generated log to track changes to the repository for each release. Each section should include general headers such as Implemented enhancements and Merged pull requests. Critical items to know are: renamed commands deprecated / removed commands changed defaults backward incompatible changes (recipe file format? image file format?) migration guidance (how to convert images?) changed behaviour (recipe sections work differently) The versions coincide with releases on pip. Only major versions will be released as tags on Github. 0.0.x (0.0.x) add missing basic auth data for request token function in token auth backend (0.2.2) re-enable chunked upload (0.2.1) refactor of auth to be provided by backend modules (0.2.0) bugfix maintain requests's verify valorization for all invocations, augment basic auth header to existing headers Allow generating a Subject from a pre-existing Manifest (0.1.30) add option to not refresh headers during the pushing flow, useful for push with basic auth (0.1.29) enable additionalProperties in schema validation (0.1.28) Introduce the option to not refresh headers when fetching manifests when pulling artifacts (0.1.27) To make it available for more OCI registries, the value of config used when manifest_config is not specified in client.push() has been changed from a pure empty string to {} (0.1.26) refactor tests using fixtures and rework pre-commit configuration (0.1.25) eliminate the additional subdirectory creation while pulling an image to a custom output directory (0.1.24) updating the exclude string in the pyproject.toml file to match the data type black expects patch fix for pulling artifacts by digest (0.1.23) patch fix to reject cookies as this could trigger registries into handling the lib as a web client patch fix for proper validation and specification of the subject element add tls_verify to provider class for optional disable tls verification (0.1.22) Allow to pull exactly to PWD (0.1.21) Ensure insecure is passed to provider class (0.1.20) patch fix for blob upload Windows, closes issue 93 (0.1.19) patch fix for empty manifest config on Windows, closes issue 90 (0.1.18) patch fix to correct session url pattern, closes issue 78 (0.1.17) add support for tag deletion and retry decorators (0.1.16) bugfix that pagination sets upper limit of 10K (0.1.15) pagination for tags (and general function for pagination) (0.1.14) expose upload_blob function to be consistent (0.1.13) ensure we always strip path separators before pull/push (0.1.12) exposing download_blob to the user since it uses streaming (0.1.11) adding developer examples for pull. start deprecation for _download_blob, _put_upload, _chunked_upload, _upload_manifest in favor of equivalent public functions. moving of docs to fully be here with extended examples (0.1.1) addition of oras.utils.workdir to provide local context clients are removed from Python SDK in favor of examples (0.1.0) login refactored to be part of the basic client ... (truncated) Commits 5d7b80d Token Auth Backend: Token request function didn`t set Authorization Header (#... 5763015 Automated deployment to update contributors 2024-09-04 (#151) dfc2415 Enable chunked uploads (#150) caf8db5 fix(core): provider do_request to maintain verify in all request, basic heade... b8c4885 core: make push response the one pertaining to Manifest (not config (#146) fd8a83c Merge pull request #141 from tarilabs/tarilabs-20240606-manifest_config 3a571e3 chore: fix typing for manifest_config param of push fn 9527aa1 Merge pull request #140 from oras-project/contributors/update-2024-06-06 19c1cb5 Automated deployment to update contributors 2024-06-06 571a23f Merge pull request #139 from tarilabs/tarilabs-20240605-docMediaType Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) View the full article
  18. Description This way we don't need to calculate yet again. Before merging, we need to figure out which other are used. Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] Any dependent changes have been merged and published in downstream modules View the full article
  19. Description ArmSoM Sige3 is rk3568 version of the sige series boards. It is a board supporting pd negotiation with fusb302, so I add pd negotiation in uboot. This pr depends on https://github.com/armbian/linux-rockchip/pull/236 How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [x] ./compile.sh BOARD=armsom-sige3 BRANCH=vendor BUILD_MINIMAL=no DEB_COMPRESS=xz KERNEL_CONFIGURE=no RELEASE=noble KERNEL_GIT=shallow BUILD_DESKTOP=yes DESKTOP_APPGROUPS_SELECTED= DESKTOP_ENVIRONMENT=gnome DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  20. Description ArmSoM CM5 IO board is a board carrying SoM ArmSoM CM5, which has rk3576 soc and is compatible with raspberry's cm4 carrier board. Board info: https://docs.armsom.org/armsom-cm5-io Vendor device tree is already merged https://github.com/armbian/linux-rockchip/pull/215 How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [ ] ./compile.sh BOARD=armsom-cm5-io BRANCH=vendor BUILD_MINIMAL=no DEB_COMPRESS=xz KERNEL_CONFIGURE=no RELEASE=noble KERNEL_GIT=shallow BUILD_DESKTOP=yes DESKTOP_APPGROUPS_SELECTED= DESKTOP_ENVIRONMENT=gnome DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  21. Description We do not build dtbs with dot in filename because the current re match rule will ignore them. This fixes https://github.com/armbian/build/issues/7187 How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [x] ./compile.sh kernel-dtb BOARD=orangepi3b BRANCH=vendor DEB_COMPRESS=xz KERNEL_CONFIGURE=no KERNEL_GIT=shallow with kernel https://github.com/dust-7/linux-rockchip/tree/opi3b-v2, rk3566-orangepi-3b-v1.1.dtb and rk3566-orangepi-3b-v1.1.dtb are built. Checklist: Please delete options that are not relevant. [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  22. Improve overall WiFi experience Default freq now set to 100MHz (optional overlay to 200MHz) Resolved incompatibility with the github driver: https://github.com/jethome-ru/rtl88x2cs If the github driver is preferred blacklist RTW88 /etc/modprobe.d/blacklist-rtw88.conf blacklist rtw88_8822c blacklist rtw88_8822cs EXTRA: Waveshare DTS fixup Discussion: https://forum.armbian.com/topic/44899-slow-wifi-speeds-on-banana-pi-cm4/ View the full article
  23. Description We had a long sage with complete rework of main hardware config tool. armbian-config still works, but it is largely unmaintained and bulky since early days. We tried several ways and failed ... New tool should contain all what we learned by failing. It can always be better, so anyone is welcome to improve it further: git clone https://github.com/armbian/configng cd configng sudo ./armbian-configng --help Not all functions were ported from old config, not all was done what was planned. It is too much work for one, two much work for two or three people ... A few of important functions are still waiting for review https://github.com/armbian/configng/pulls Once overlay management is developed and all features that are implemented well tested, we will tag 1.0, to have something that works well, but without all features. How Has This Been Tested? Utility works on freshly generated image. Upgrade not tested yet. Checklist: [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  24. Description sunxi-6.6: switch to v6.6.50, re-extract patches The four patch files were renamed automatically and now correspond to the field in the Subject: line. How Has This Been Tested? [ ] Test build arm [ ] Test build arm64 View the full article
  25. Description by double quoting ${ENABLE_EXTENSIONS} we make sure framework doesn't crash during initrd build while interpreting a possible space-separated second extension from config file or command line Might be an alternative to PR #7182 Bonus: this also saves armbian-add-overlay from same behavior [x] Succesfully build orangepi5-plus current while multiple extensions were enabled Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] My changes generate no new warnings View the full article
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines