Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
linux
Commits
b533a308
Commit
b533a308
authored
Oct 19, 2020
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for QEMU SkyLake
parent
f21a455f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
Makefile
Makefile
+36
-0
build.xml
build.xml
+4
-0
No files found.
Makefile
View file @
b533a308
...
...
@@ -26,6 +26,7 @@ boot-qemu-core2duo: boot-x86_64
boot-qemu-nehalem
:
boot-x86_64
boot-qemu-westmere
:
boot-x86_64
boot-qemu-sandybridge
:
boot-x86_64
boot-qemu-skylake
:
boot-x86_64
boot-x4-945
:
boot-x86_64
boot-e2-6110
:
boot-x86_64
boot-p4-630
:
boot-x86_64
...
...
@@ -502,6 +503,41 @@ sandybridge:
rm
-rf
/kernelconfig
rm
-rf
linux-5.2.8
skylake-clfs
:
tar
xf linux-5.2.8.tar.xz
$(MAKE)
-C
linux-5.2.8 defconfig
/kernelconfig/initramfs/prepare
bash
-c
'files=`ls -1 /kernelconfig/qemu-skylake` ; for config in $$files ; do cat /kernelconfig/qemu-skylake/$$config >> linux-5.2.8/.config ; done'
$(MAKE)
-C
linux-5.2.8 oldconfig
$(MAKE)
-C
linux-5.2.8
$(MAKE)
-C
linux-5.2.8 modules_install
cp
-v
linux-5.2.8/arch/x86/boot/bzImage /boot/vmlinuz-5.2.8
cp
-v
linux-5.2.8/System.map /boot/System.map-5.2.8
cp
-v
linux-5.2.8/.config /boot/config-5.2.8
ln
-svf
vmlinuz-5.2.8 /boot/zImage
$(MAKE)
-C
../kmod tests
rm
-rf
/kernelconfig
rm
-rf
linux-5.2.8
skylake
:
tar
xf linux-5.2.8.tar.xz
cp
-v
/boot/config-5.2.8 linux-5.2.8/.config
/kernelconfig/initramfs/prepare
bash
-c
'files=`ls -1 /kernelconfig/qemu-skylake` ; for config in $$files ; do cat /kernelconfig/qemu-skylake/$$config >> linux-5.2.8/.config ; done'
$(MAKE)
-C
linux-5.2.8 oldconfig
$(MAKE)
-C
linux-5.2.8
rm
-rf
/lib/modules
rm
-f
/boot/config
*
rm
-f
/boot/vmlinuz
*
rm
-f
/boot/System.map
*
$(MAKE)
-C
linux-5.2.8 modules_install
cp
-v
linux-5.2.8/arch/x86/boot/bzImage /boot/vmlinuz-5.2.8
cp
-v
linux-5.2.8/System.map /boot/System.map-5.2.8
cp
-v
linux-5.2.8/.config /boot/config-5.2.8
ln
-svf
vmlinuz-5.2.8 /boot/zImage
rm
-rf
/kernelconfig
rm
-rf
linux-5.2.8
x4-945-clfs
:
tar
xf linux-5.2.8.tar.xz
$(MAKE)
-C
linux-5.2.8 defconfig
...
...
build.xml
View file @
b533a308
...
...
@@ -239,6 +239,10 @@ CONFIG_CROSS_COMPILE="${CLFS_TARGET}"
<ant
antfile=
"packages/linux/build.xml"
target=
"boot-linux-x86_64"
/>
</target>
<target
name=
"boot-linux-qemu-skylake"
>
<ant
antfile=
"packages/linux/build.xml"
target=
"boot-linux-x86_64"
/>
</target>
<target
name=
"boot-linux-x4-945"
>
<ant
antfile=
"packages/linux/build.xml"
target=
"boot-linux-x86_64"
/>
</target>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment