mainboards: Fix kernel version to pass CI

Signed-off-by: KuiRong <605470060@gms.tku.edu.tw>
This commit is contained in:
KuiRong 2023-12-28 14:54:41 +08:00 committed by ron minnich
parent 383b97df30
commit badd59a0b7
12 changed files with 11096 additions and 15 deletions

View File

@ -33,7 +33,7 @@ fetch: getkernel geturoot getfiano
getkernel:
rm -rf linux
git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux
git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux
getfiano:
go get -u github.com/linuxboot/fiano/cmds/utk

View File

@ -51,15 +51,15 @@ uroot:
cp *lzma linux
bzImage:
cp config-4.14.111 linux/.config
cp config-5.15.0 linux/.config
(cd linux && make oldconfig && make -j32)
fetch: getkernel geturoot getfiano getrom
getkernel:
rm -rf linux
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz
xzcat kernel.xz | tar x
mv linux-4.14.111 linux
mv linux-5.15 linux
getfiano:
go get -u github.com/linuxboot/fiano/cmds/utk
go install github.com/linuxboot/fiano/cmds/utk

File diff suppressed because it is too large Load Diff

View File

@ -51,7 +51,7 @@ uroot:
cp *lzma linux
bzImage:
cp config-4.14.111 linux/.config
cp config-5.15.0 linux/.config
(cd linux && make oldconfig && make -j32)
fetch: getkernel geturoot getfiano getrom

File diff suppressed because it is too large Load Diff

View File

@ -59,15 +59,15 @@ uroot:
cp *lzma linux
bzImage:
cp config-4.14.111 linux/.config
cp config-5.15.0 linux/.config
(cd linux && make oldconfig && make -j32)
fetch: getkernel geturoot getfiano getrom
getkernel:
rm -rf linux
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz
xzcat kernel.xz | tar x
mv linux-4.14.111 linux
mv linux-5.15 linux
getrom:
echo you create the flashkernel
echo on the APU2: flashrom -r coreboot.bin -p internal

File diff suppressed because it is too large Load Diff

View File

@ -40,15 +40,15 @@ uroot:
cp *lzma linux
bzImage:
cp config-4.14.111 linux/.config
cp config-5.15.0 linux/.config
(cd linux && make oldconfig && make -j32)
fetch: getkernel geturoot getfiano getrom
getkernel:
rm -rf linux
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz
xzcat kernel.xz | tar x
mv linux-4.14.111 linux
mv linux-5.15 linux
getrom:
echo you create the kernel
echo on the APU2: flashrom -r apu.bin -p internal

File diff suppressed because it is too large Load Diff

View File

@ -17,15 +17,15 @@ uroot:
cp *lzma linux
bzImage:
cp config-4.14.111 linux/.config
cp config-5.15.0 linux/.config
(cd linux && make oldconfig && make -j32)
fetch: getkernel geturoot
getkernel:
rm -rf linux
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz
wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz
xzcat kernel.xz | tar x
mv linux-4.14.111 linux
mv linux-5.15 linux
geturoot:
go get -u github.com/u-root/u-root

File diff suppressed because it is too large Load Diff

View File

@ -99,7 +99,7 @@ fetch: getkernel geturoot
getkernel:
rm -rf linux
git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux
git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux
(cd linux && make mrproper)
(cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make tinyconfig)