-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vf2: move to newer kernel and new partition schema - wip
moving over to the kernel version used in the 202302 starfive debian image, to its boot block setup and partitioning ... if things go well this will give working pure sd card booting and no more /boot/boot chaos all this is not tested yet ...
- Loading branch information
1 parent
0336ffb
commit b821351
Showing
6 changed files
with
32 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# this file is supposed to be sourced by the get-files shell script | ||
|
||
starfive_visionfive2_release_version="5.15.0-vf2-280%2B" | ||
starfive_visionfive2_release_version="5.15.0-vf2-104%2B" | ||
starfive_visionfive2_boot_version="202302" | ||
|
||
rm -f ${DOWNLOAD_DIR}/kernel-starfive_visionfive2-${2}.tar.gz | ||
wget -v https://github.com/hexdump0815/linux-starfive-visionfive2-kernel/releases/download/${starfive_visionfive2_release_version}/${starfive_visionfive2_release_version}.tar.gz -O ${DOWNLOAD_DIR}/kernel-starfive_visionfive2-${2}.tar.gz | ||
|
||
rm -f ${DOWNLOAD_DIR}/boot-starfive_visionfive2-${2}.dd | ||
wget -v https://github.com/hexdump0815/linux-starfive-visionfive2-kernel/raw/${starfive_visionfive2_release_version}/misc.vf2/misc/boot-vf2-${starfive_visionfive2_boot_version}.dd.gz -O - | gunzip -c | dd bs=512 seek=34 skip=34 of=${DOWNLOAD_DIR}/boot-starfive_visionfive2-${2}.dd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
BOOTFS=fat | ||
ROOTFS=btrfs | ||
BOOTPART=2 | ||
ROOTPART=3 | ||
BOOTPART=3 | ||
ROOTPART=4 |