Photonicat 编译 OpenWRT, Debian: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==Debian== ===Host System Requirements=== Debian 11 (bullseye) or Ubuntu 20.04. ===Compiling Requirements=== On Debian/Ubuntu systems, install the packages: <pre> sudo apt-get install build-essential flex bison genext2fs </pre> ===Get repo files=== Get repo files from Github: <pre> git clone https://github.com/photonicat/rockchip_rk3568_linux_sdk -b debian --single-branch rk3568-linux-sdk cd rk3568-linux-sdk git submodule update --init </pre> ===Install live build pa...") |
m (C2h2 moved page Photonicat 编译 OpenWRT / Debian to Photonicat 编译 OpenWRT, Debian) |
Revision as of 14:22, 6 September 2022
Debian
Host System Requirements
Debian 11 (bullseye) or Ubuntu 20.04.
Compiling Requirements
On Debian/Ubuntu systems, install the packages:
sudo apt-get install build-essential flex bison genext2fs
Get repo files
Get repo files from Github:
git clone https://github.com/photonicat/rockchip_rk3568_linux_sdk -b debian --single-branch rk3568-linux-sdk cd rk3568-linux-sdk git submodule update --init
Install live build packages
Install live build packages if not installed yet:
sudo dpkg -i debian/ubuntu-build-service/packages/*.deb sudo apt-get install -f
Config build target
Run the command below:
./rk3568-config-photonicat-debian.sh
Build system image
Run the command below:
./build.sh
The output path is rockdev, system image path is rockdev/pack
Install system image to the eMMC on board
Set the board to firmware update mode, connect USB OTG port to PC, and use the command below:
sudo tools/linux/Linux_Upgrade_Tool/Linux_Upgrade_Tool/upgrade_tool uf rockdev/pack/BOARDCONFIG-RK3568-PHOTONICAT-DEBIAN-DDR4-GPT-IMAGE_DATE-IMAGE_TIME.img #Replace IMAGE_DATE and IMAGE_TIME with the one you get.
OpenWRT
Host System Requirements
Debian 11 (bullseye) or Ubuntu 20.04, other distributions may work but not tested.
Compiling Requirements
On Debian/Ubuntu systems, install the packages:
sudo apt-get install build-essential flex bison genext2fs \ ccache ecj fastjar file g++ gawk gettext git \ java-propose-classpath libelf-dev libncurses5-dev \ libncursesw5-dev libssl-dev python python2.7-dev python3 \ unzip wget python3-distutils python3-setuptools python3-dev \ rsync subversion swig time xsltproc zlib1g-dev
Get repo files
Get repo files from Github:
git clone https://github.com/photonicat/rockchip_rk3568_linux_sdk -b openwrt --single-branch rk3568-linux-sdk cd rk3568-linux-sdk git submodule update --init
Config build target
Run the command below:
./rk3568-config-photonicat-openwrt.sh
Build system image
Run the command below:
./build.sh
The output path is rockdev, system image path is rockdev/pack
Install system image to the eMMC on board
Set the board to firmware update mode, connect USB OTG port to PC, and use the command below:
sudo tools/linux/Linux_Upgrade_Tool/Linux_Upgrade_Tool/upgrade_tool uf rockdev/pack/BOARDCONFIG-RK3568-PHOTONICAT-OPENWRT-DDR4-GPT-IMAGE_DATE-IMAGE_TIME.img #Replace IMAGE_DATE and IMAGE_TIME with the one you get.