mirror of
https://github.com/easytarget/MQ-Pro-IO.git
synced 2025-10-13 17:25:52 +01:00
Make only single kernel version, offer to update sources (#11)
Source updates may break building older releases (eg kernel#48 source breaks dtb includes for kernel#41) * Only build latest * offer to update sources
This commit is contained in:
parent
140add012f
commit
ba12d53a61
@ -46,7 +46,9 @@ Go for a coffee.. ignore the 'git clone' suggestion.
|
||||
- This will use ~1.6Gb of space.. so be prepared.
|
||||
|
||||
#### Updating sources
|
||||
You can re-run the `apt source` command in this folder and it will only download and update as needed, but is still somewhat slow since it verifies the existing downloads when updating.
|
||||
The `make_dtbs.sh` command used below will offer to update the source tree when run, this shoule be done wnenever a new kernel vesion s being built, but does not need to be re-done after that version has been fetched at least once.
|
||||
|
||||
You can also manually re-run the `apt source` command in this folder and it will only download and update as needed, but is still somewhat slow since it verifies the existing downloads when updating.
|
||||
|
||||
-------------------------------------------
|
||||
# Building the device tree(s)
|
||||
@ -61,7 +63,7 @@ Run the build as a normal user (the same user used to fetch the sources above).
|
||||
* `.dtb` is the binary compiled device tree, this is what we are building here, and is supplied to the kernel at boot time.
|
||||
|
||||
## device tree sources
|
||||
For convenience, the default `sun20i-d1-mangopi-mq-pro.dts` file from the Ubuntu source is also linked here.
|
||||
For convenience, the default `sun20i-d1-mangopi-mq-pro.dts` file from the Ubuntu source is also linked here.
|
||||
|
||||
Rather than modifying the default tree you should copy it to a custom name, eg 'my-project.dts'. Or you can copy in examples from the [alt-trees](../alt-trees/) folder.
|
||||
|
||||
@ -80,27 +82,35 @@ This will:
|
||||
|
||||
```console
|
||||
$ ./make_dtbs.sh
|
||||
Building for kernels: 6.8.0-41-generic
|
||||
Update source tree (may be slow)? [y/N]:
|
||||
|
||||
Cleaning existing 6.8.0-41-generic build directory
|
||||
Available kernels:
|
||||
[1] 6.8.0-41-generic
|
||||
[2] 6.8.0-44-generic
|
||||
[3] 6.8.0-47-generic
|
||||
[4] 6.8.0-48-generic - currently running kernel
|
||||
Which kernel to build? [4]:
|
||||
|
||||
Compiling against headers for 6.8.0-41-generic
|
||||
Precompiling all includes in build root into 6.8.0-41-generic build directory
|
||||
sun20i-common-regulators.dtsi -> 6.8.0-41-generic/sun20i-common-regulators.dtsi
|
||||
sun20i-d1.dtsi -> 6.8.0-41-generic/sun20i-d1.dtsi
|
||||
sun20i-d1s.dtsi -> 6.8.0-41-generic/sun20i-d1s.dtsi
|
||||
sunxi-d1-t113.dtsi -> 6.8.0-41-generic/sunxi-d1-t113.dtsi
|
||||
sunxi-d1s-t113.dtsi -> 6.8.0-41-generic/sunxi-d1s-t113.dtsi
|
||||
Precompiling all sources in build root into 6.8.0-41-generic build directory
|
||||
my-project.dts -> 6.8.0-41-generic/my-project.dts
|
||||
sun20i-d1-mangopi-mq-pro.dts -> 6.8.0-41-generic/sun20i-d1-mangopi-mq-pro.dts
|
||||
Compiling all device tree sources in 6.8.0-41-generic build directory
|
||||
6.8.0-41-generic/my-project.dts -> 6.8.0-41-generic/my-project.dtb
|
||||
6.8.0-41-generic/sun20i-d1-mangopi-mq-pro.dts -> 6.8.0-41-generic/sun20i-d1-mangopi-mq-pro.dtb
|
||||
Building for kernel: 6.8.0-48-generic
|
||||
Cleaning existing 6.8.0-48-generic build directory
|
||||
|
||||
Compiling against headers for 6.8.0-48-generic
|
||||
Precompiling all includes in build root into 6.8.0-48-generic build directory
|
||||
sun20i-common-regulators.dtsi -> 6.8.0-48-generic/sun20i-common-regulators.dtsi
|
||||
sun20i-d1.dtsi -> 6.8.0-48-generic/sun20i-d1.dtsi
|
||||
sun20i-d1s.dtsi -> 6.8.0-48-generic/sun20i-d1s.dtsi
|
||||
sunxi-d1-t113.dtsi -> 6.8.0-48-generic/sunxi-d1-t113.dtsi
|
||||
sunxi-d1s-t113.dtsi -> 6.8.0-48-generic/sunxi-d1s-t113.dtsi
|
||||
Precompiling all sources in build root into 6.8.0-48-generic build directory
|
||||
my-project.dts -> 6.8.0-48-generic/my-project.dts
|
||||
sun20i-d1-mangopi-mq-pro.dts -> 6.8.0-48-generic/sun20i-d1-mangopi-mq-pro.dts
|
||||
Compiling all device tree sources in 6.8.0-48-generic build directory
|
||||
6.8.0-48-generic/my-project.dts -> 6.8.0-48-generic/my-project.dtb
|
||||
6.8.0-48-generic/sun20i-d1-mangopi-mq-pro.dts -> 6.8.0-48-generic/sun20i-d1-mangopi-mq-pro.dtb
|
||||
|
||||
Success. Consider running 'flash_latest.sh' to make permanent (see docs)
|
||||
```
|
||||
The `6.8.0-41-generic` folder now has our device tree: `my-project.dtb`
|
||||
The `6.8.0-48-generic` folder now has our device tree: `my-project.dtb`
|
||||
- We also generate the default device tree, this can be ignored.
|
||||
|
||||
The tool builds for *all* the kernels available on the system, not just the running kernel.
|
||||
@ -169,21 +179,25 @@ Running *flash-kernel* immediately after this will fail since it cannot yet find
|
||||
Run `flash_latest.sh`, this will ask you to confirm which kernel version you want to copy from.
|
||||
- It defaults to the current running kernel.
|
||||
- When upgrading this allows you to precompile and install the correct DTB in advance before rebooting into the new kernel.
|
||||
- It needs root access via `sudo`, (you will be prompted to enter your password if using sudo with a password)
|
||||
|
||||
```console
|
||||
$ ./flash_latest.sh
|
||||
$ ./flash_latest.sh
|
||||
|
||||
Available kernels:
|
||||
[1] 6.8.0-41-generic - currently running kernel
|
||||
Which kernel to link? [1]:
|
||||
[1] 6.8.0-41-generic
|
||||
[2] 6.8.0-44-generic
|
||||
[3] 6.8.0-47-generic
|
||||
[4] 6.8.0-48-generic - currently running kernel
|
||||
Which kernel to link? [4]:
|
||||
|
||||
Cleaning '/etc/flash-kernel/dtbs/' and copying in device tree binaries from '6.8.0-41-generic/'
|
||||
/home/owen/MQ-Pro-IO/build-trees/6.8.0-41-generic/my-project.dtb --> /etc/flash-kernel/dtbs/my-project.dtb
|
||||
/home/owen/MQ-Pro-IO/build-trees/6.8.0-41-generic/sun20i-d1-mangopi-mq-pro.dtb --> /etc/flash-kernel/dtbs/sun20i-d1-mangopi-mq-pro.dtb
|
||||
Run 'flash-kernel' to apply device tree? [Y]:
|
||||
Cleaning '/etc/flash-kernel/dtbs/' and copying in device tree binaries from '6.8.0-48-generic/'
|
||||
/home/owen/MQ-Pro-IO/build-trees/6.8.0-48-generic/my-project.dtb --> /etc/flash-kernel/dtbs/my-project.dtb
|
||||
/home/owen/MQ-Pro-IO/build-trees/6.8.0-48-generic/sun20i-d1-mangopi-mq-pro.dtb --> /etc/flash-kernel/dtbs/sun20i-d1-mangopi-mq-pro.dtb
|
||||
|
||||
Run 'flash-kernel' to apply device tree? [Y]: y
|
||||
Using DTB: custom/my-project.dtb
|
||||
Installing /etc/flash-kernel/dtbs/my-project.dtb into /boot/dtbs/6.8.0-41-generic/custom/my-project.dtb
|
||||
Installing /etc/flash-kernel/dtbs/my-project.dtb into /boot/dtbs/6.8.0-48-generic/custom/my-project.dtb
|
||||
Taking backup of my-project.dtb.
|
||||
Installing new my-project.dtb.
|
||||
System running in EFI mode, skipping.
|
||||
|
@ -5,72 +5,98 @@
|
||||
dtc=/usr/bin/dtc
|
||||
|
||||
cdir=`pwd`
|
||||
versions=`dpkg --list | grep linux-image-[0-9].* | cut -d" " -s -f 3 | sed s/^linux-image-// | sort -Vr`
|
||||
versions=`dpkg --list | grep linux-image-[0-9].* | cut -d" " -s -f 3 | sed s/^linux-image-// | sort -V`
|
||||
current=`/usr/bin/uname -r`
|
||||
|
||||
echo -ne "\nBuilding for kernels: "
|
||||
echo `echo $versions | sed "s/ /, /g"`
|
||||
echo
|
||||
read -p "Update source tree (may be slow)? [y/N]: " choice
|
||||
if [ ! -z "$choice" ] ; then
|
||||
if [ "$choice" == 'y' ] ; then
|
||||
cd ../source
|
||||
apt source linux-riscv
|
||||
fi
|
||||
fi
|
||||
|
||||
# Disabled auto building of all alt trees, better to do individually
|
||||
#alt=../alt-trees
|
||||
#echo "Linking alt dts sources to build root"
|
||||
#for dts in `ls -d $alt/*/*.dts`; do
|
||||
# echo "$dts"
|
||||
# ln -s "$dts" .
|
||||
#done
|
||||
|
||||
# Ensure sure build roots exist and are clean
|
||||
for revision in $versions ; do
|
||||
if [ -d "$cdir/$revision" ]; then
|
||||
echo "Cleaning existing $revision build directory"
|
||||
rm -f $revision/*.dts $revision/*.dtsi $revision/*.dtb
|
||||
echo -e "\nAvailable kernels:"
|
||||
option=0
|
||||
declare -a klist
|
||||
for ver in $versions ; do
|
||||
option=$((option+1))
|
||||
klist[$option]=$ver
|
||||
echo -n " [$option] $ver"
|
||||
if [ $ver == $current ] ; then
|
||||
echo " - currently running kernel"
|
||||
else
|
||||
echo "Creating new build directory: $revision"
|
||||
mkdir $revision
|
||||
echo
|
||||
fi
|
||||
done
|
||||
|
||||
# Compile for each revision
|
||||
for revision in $versions ; do
|
||||
cd $cdir
|
||||
echo -e "\nCompiling against headers for $revision"
|
||||
echo "Precompiling all includes in build root into $revision build directory"
|
||||
for file in `ls *.dtsi`; do
|
||||
echo " $file -> $revision/${file##*/}"
|
||||
cpp -I/usr/src/linux-headers-$revision/include/ -nostdinc -undef -x assembler-with-cpp $file > $revision/${file##*/}
|
||||
if [ ! -s "$revision/${file##*/}" ] ; then
|
||||
rm "$revision/${file##*/}"
|
||||
echo "**** ERROR ****"
|
||||
echo "Precompile failed for include: $revision/${file##*/}"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
read -p "Which kernel to build? [$option]: " choice
|
||||
if [ -z "$choice" ] ; then
|
||||
choice=$option
|
||||
else
|
||||
echo
|
||||
echo "WARNING: building older versions may fail if the source tree includes have changed with more recent kernels"
|
||||
echo
|
||||
fi
|
||||
|
||||
echo "Precompiling all sources in build root into $revision build directory"
|
||||
for file in `ls *.dts`; do
|
||||
echo " $file -> $revision/${file##*/}"
|
||||
cpp -I/usr/src/linux-headers-$revision/include/ -nostdinc -undef -x assembler-with-cpp $file > $revision/${file##*/}
|
||||
if [ ! -s "$revision/${file##*/}" ] ; then
|
||||
rm "$revision/${file##*/}"
|
||||
echo "**** ERROR ****"
|
||||
echo "Precompile failed for source: $revision/${file##*/}"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
revision=${klist[$choice]}
|
||||
if [ -z "$revision" ] ; then
|
||||
echo "No valid kernel selected, exiting."
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "Compiling all device tree sources in $revision build directory"
|
||||
cd $revision
|
||||
for file in `ls *.dts`; do
|
||||
out=${file/.dts/.dtb}
|
||||
echo " $revision/$file -> $revision/$out"
|
||||
$dtc $file > $out
|
||||
if [ ! -s "$out" ] ; then
|
||||
rm "$out"
|
||||
echo "**** ERROR ****"
|
||||
echo "Compile failed for: $out"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
echo -ne "\nBuilding for kernel: $revision"
|
||||
echo
|
||||
|
||||
# Ensure sure build root exists and is clean
|
||||
if [ -d "$cdir/$revision" ]; then
|
||||
echo "Cleaning existing $revision build directory"
|
||||
rm -f $revision/*.dts $revision/*.dtsi $revision/*.dtb
|
||||
else
|
||||
echo "Creating new build directory: $revision"
|
||||
mkdir $revision
|
||||
fi
|
||||
|
||||
# Compile
|
||||
cd $cdir
|
||||
echo -e "\nCompiling against headers for $revision"
|
||||
echo "Precompiling all includes in build root into $revision build directory"
|
||||
|
||||
for file in `ls *.dtsi`; do
|
||||
echo " $file -> $revision/${file##*/}"
|
||||
cpp -I/usr/src/linux-headers-$revision/include/ -nostdinc -undef -x assembler-with-cpp $file > $revision/${file##*/}
|
||||
if [ ! -s "$revision/${file##*/}" ] ; then
|
||||
rm "$revision/${file##*/}"
|
||||
echo "**** ERROR ****"
|
||||
echo "Precompile failed for include: $revision/${file##*/}"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Precompiling all sources in build root into $revision build directory"
|
||||
for file in `ls *.dts`; do
|
||||
echo " $file -> $revision/${file##*/}"
|
||||
cpp -I/usr/src/linux-headers-$revision/include/ -nostdinc -undef -x assembler-with-cpp $file > $revision/${file##*/}
|
||||
if [ ! -s "$revision/${file##*/}" ] ; then
|
||||
rm "$revision/${file##*/}"
|
||||
echo "**** ERROR ****"
|
||||
echo "Precompile failed for source: $revision/${file##*/}"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Compiling all device tree sources in $revision build directory"
|
||||
cd $revision
|
||||
for file in `ls *.dts`; do
|
||||
out=${file/.dts/.dtb}
|
||||
echo " $revision/$file -> $revision/$out"
|
||||
$dtc $file > $out
|
||||
if [ ! -s "$out" ] ; then
|
||||
rm "$out"
|
||||
echo "**** ERROR ****"
|
||||
echo "Compile failed for: $out"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
echo -e "\nSuccess. Consider running 'flash_latest.sh' to make permanent (see docs)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user