uboot-mt7621
uboot-mt7621 copied to clipboard
MTK U-Boot (MT7621) v2018.09 Build Customized u-boot Online
本地编译7621uboot,一开始提示python not found,做了软链接指向python3.10后,编译到最后。报错,查资料也跟python有关。 请问,是python版本的问题吗
Fix the issue where GitHub Workflow (Ubuntu 22.04) cannot install Python 2.7
ubuntu latest not support python2-dev , change ubuntu version to ubutnu-22.04
Running on `ubuntu-latest` gives out error, as `python2-dev` packages is dropped in ubuntu 24.04. Changing it to `ubuntu-22.04` makes the workflow works again.
sorry to posting here, there is any place to get support in building u-boot to replace pandorabox on my router zbt wg1602? here are the specs: ------------------------------------------------------- ZBT-WG1602 V04 (32M)...
``` int hex2int(char ch) { if(isdigit(ch)) return ch - 48; if( ch < 'A' || (ch > 'F' && ch < 'a') || ch > 'f' ) return -1; if(isalpha(ch))...