add Build alias

This commit is contained in:
YuzukiTsuru 2022-04-07 15:35:46 +08:00
parent 784a00f12a
commit 04d8a91dcb
4 changed files with 8 additions and 5 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
linux-src/
uboot-src/
buildroot-2022.02/
buildroot/**/*.d
buildroot/**/*.d

View File

@ -4,7 +4,7 @@ CONFIG_DEFAULT_DEVICE_TREE="sun8i-v3x-yuzukick1n-uboot"
CONFIG_SPL=y
CONFIG_MACH_SUN8I_V3S=y
CONFIG_SUNXI_DRAM_DDR3_1333=y
CONFIG_DRAM_CLK=400
CONFIG_DRAM_CLK=536
CONFIG_SYS_CLK_FREQ=800000000
CONFIG_BOOTDELAY=0
# CONFIG_ENV_IS_IN_FAT is not set

View File

@ -169,15 +169,15 @@ make: *** [dependencies] Error 1
Lunch 🚀 to buildroot.
`rebuild_kernel`
`rebuild_kernel` = `mkernel` = `rkernel`
Delete the generated dtb and rebuild the kernel
`rebuild_uboot`
`rebuild_uboot` = `mboot` = `rboot`
Rebuild the U-Boot
`sync_kernel`
`sync_kernel`
Modify the kernel-related patch or need to restore the original kernel

View File

@ -51,4 +51,7 @@ alias m="make"
alias mkernel="rebuild_kernel"
alias rkernel="rebuild_kernel"
alias mboot="rebuild_uboot"
alias rboot="rebuild_uboot"
echo "Setup env done! Please run lunch next."