mirror of
https://github.com/brain-hackers/buildbrain
synced 2025-07-13 15:04:15 +09:00
compatible with i.mx28 build
This commit is contained in:
parent
e08c350ede
commit
34a0576124
23
Makefile
23
Makefile
@ -27,7 +27,7 @@ watch:
|
|||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
udefconfig:
|
udefconfig:
|
||||||
make -C ./u-boot-brain pwh1_defconfig
|
make -C ./u-boot-brain pwsh1_defconfig
|
||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
udefconfig-%:
|
udefconfig-%:
|
||||||
@ -55,6 +55,10 @@ ubuild:
|
|||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
ldefconfig:
|
ldefconfig:
|
||||||
|
make -C ./linux-brain brain_defconfig
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
ldefconfig-x1:
|
||||||
make -C ./linux-brain imx_v7_defconfig
|
make -C ./linux-brain imx_v7_defconfig
|
||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
@ -63,6 +67,11 @@ lmenuconfig:
|
|||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
lsavedefconfig:
|
lsavedefconfig:
|
||||||
|
make CROSS_COMPILE=$(LINUX_CROSS) -C ./linux-brain savedefconfig
|
||||||
|
mv ./linux-brain/defconfig ./linux-brain/arch/arm/configs/brain_defconfig
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
lsavedefconfig-x1:
|
||||||
make CROSS_COMPILE=$(LINUX_CROSS) -C ./linux-brain savedefconfig
|
make CROSS_COMPILE=$(LINUX_CROSS) -C ./linux-brain savedefconfig
|
||||||
mv ./linux-brain/defconfig ./linux-brain/arch/arm/configs/imx_v7_defconfig
|
mv ./linux-brain/defconfig ./linux-brain/arch/arm/configs/imx_v7_defconfig
|
||||||
|
|
||||||
@ -74,6 +83,18 @@ lclean:
|
|||||||
lbuild:
|
lbuild:
|
||||||
make CROSS_COMPILE=$(LINUX_CROSS) -j$(JOBS) -C ./linux-brain
|
make CROSS_COMPILE=$(LINUX_CROSS) -j$(JOBS) -C ./linux-brain
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
uuu:
|
||||||
|
sudo uuu ./u-boot-brain/u-boot.sb
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
nkbin-maker:
|
||||||
|
make -C ./nkbin_maker
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
nk.bin:
|
||||||
|
./nkbin_maker/bsd-ce ./u-boot-brain/u-boot.bin
|
||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
boot4ubuild:
|
boot4ubuild:
|
||||||
make -C ./boot4u
|
make -C ./boot4u
|
||||||
|
36
README.md
36
README.md
@ -3,7 +3,7 @@ buildbrain
|
|||||||
|
|
||||||
This repository includes:
|
This repository includes:
|
||||||
|
|
||||||
- linux-brain, u-boot-brain and boot4u as submodules
|
- linux-brain, u-boot-brain, nkbin_maker and boot4u as submodules
|
||||||
- Useful build targets in Makefile
|
- Useful build targets in Makefile
|
||||||
- r3build.toml to watch changes that occur in submodules
|
- r3build.toml to watch changes that occur in submodules
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ Getting Started
|
|||||||
1. Install dependencies.
|
1. Install dependencies.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabihf libssl-dev bc lzop
|
$ sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf libssl-dev bc lzop
|
||||||
$ pip install pyelftools
|
$ pip install pyelftools
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -36,14 +36,40 @@ Getting Started
|
|||||||
$ git submodule update --init --recursive
|
$ git submodule update --init --recursive
|
||||||
```
|
```
|
||||||
|
|
||||||
|
1. Install uuu.
|
||||||
|
|
||||||
|
- Follow [the instruction](https://github.com/NXPmicro/mfgtools#linux) and build `uuu` executable.
|
||||||
|
- Put `uuu` where the PATH executable points to.
|
||||||
|
|
||||||
|
|
||||||
Build U-Boot
|
Build U-Boot
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
1. Run `make udefconfig` to generate `.config`.
|
1. Run `make udefconfig-sh*` to generate `.config`.
|
||||||
|
|
||||||
2. Run `make ubuild` to build whole repository and generate `u-boot.bin`.
|
- For Sx1: `make udefconfig-sh1`
|
||||||
|
- For Sx6: `make udefconfig-sh6`
|
||||||
|
- For x1: `make udefconfig-h1`
|
||||||
|
|
||||||
|
2. Run `make ubuild` to build whole repository and generate `u-boot.sb` or `u-boot.bin`.
|
||||||
|
|
||||||
|
- i.MX283 loads a packed U-Boot executable called `u-boot.sb`.
|
||||||
|
|
||||||
|
|
||||||
|
Inject U-Boot into i.MX283 in recovery mode
|
||||||
|
-----------------------
|
||||||
|
1. Follow `Build U-Boot` procedure to make U-Boot binary.
|
||||||
|
|
||||||
|
1. Run `make uuu`
|
||||||
|
|
||||||
|
Build and make NK.bin
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
1. Follow `Build U-Boot` procedure to make U-Boot binary.
|
||||||
|
|
||||||
|
1. To make `nk.bin`, run `make nkbin`.
|
||||||
|
|
||||||
|
- nkbin_maker packs `u-boot.bin` into `nk.bin`.
|
||||||
|
|
||||||
Build and deploy boot4u
|
Build and deploy boot4u
|
||||||
-----------------------
|
-----------------------
|
||||||
@ -77,7 +103,7 @@ Bootstrap Debian 10 (buster)
|
|||||||
1. Build and copy the Linux kernel.
|
1. Build and copy the Linux kernel.
|
||||||
|
|
||||||
- Run `make ldefconfig lbuild`.
|
- Run `make ldefconfig lbuild`.
|
||||||
- Copy `/linux-brain/arch/arm/boot/zImage` and `/linux-brain/arch/arm/boot/dts/imx7ulp-pwh1.dtb` into the 1st partition.
|
- Copy `/linux-brain/arch/arm/boot/zImage` and `/linux-brain/arch/arm/boot/dts/imx28-evk.dtb`(Sx1-6)`/linux-brain/arch/arm/boot/dts/imx7ulp-pwh1.dtb`(x1) into the 1st partition.
|
||||||
|
|
||||||
1. Run APT cache in background (mandatory): `make aptcache`.
|
1. Run APT cache in background (mandatory): `make aptcache`.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user