Difference between revisions of "Build TomElliott Kernel"
(→Additional Patches) |
(→drivers/scsi/storvsc_drv.c) |
||
Line 104: | Line 104: | ||
blk_queue_virt_boundary(sdevice->request_queue, PAGE_SIZE - 1); | blk_queue_virt_boundary(sdevice->request_queue, PAGE_SIZE - 1); | ||
} | } | ||
+ | </pre> | ||
+ | |||
+ | == drivers/net/ethernet/broadcom/tg3.c == | ||
+ | Important patch to help prevent from network issues with Broadcom NetXtreme BCM5762 Gigabit Ethernet PCIe - https://forums.fogproject.org/post/107707 | ||
+ | |||
+ | <pre> | ||
+ | diff -Nur linux-4.19.6/drivers/net/ethernet/broadcom/tg3.c kernelsourcex64/drivers/net/ethernet/broadcom/tg3.c | ||
+ | --- linux-4.19.6/drivers/net/ethernet/broadcom/tg3.c 2018-12-05 12:32:14.000000000 -0600 | ||
+ | +++ kernelsourcex64/drivers/net/ethernet/broadcom/tg3.c 2018-12-16 05:50:37.203460130 -0600 | ||
+ | @@ -9028,6 +9028,11 @@ | ||
+ | case ASIC_REV_5720: | ||
+ | tw32(TG3_CPMU_CLCK_ORIDE, CPMU_CLCK_ORIDE_MAC_ORIDE_EN); | ||
+ | break; | ||
+ | + case ASIC_REV_5762: | ||
+ | + val = tr32(TG3_CPMU_CLCK_ORIDE_ENABLE); | ||
+ | + tw32(TG3_CPMU_CLCK_ORIDE_ENABLE, val | | ||
+ | + TG3_CPMU_MAC_ORIDE_ENABLE); | ||
+ | + break; | ||
+ | |||
+ | default: | ||
+ | return; | ||
+ | @@ -9150,13 +9155,6 @@ | ||
+ | tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU); | ||
+ | } | ||
+ | |||
+ | - /* Set the clock to the highest frequency to avoid timeouts. With link | ||
+ | - * aware mode, the clock speed could be slow and bootcode does not | ||
+ | - * complete within the expected time. Override the clock to allow the | ||
+ | - * bootcode to finish sooner and then restore it. | ||
+ | - */ | ||
+ | - tg3_override_clk(tp); | ||
+ | - | ||
+ | /* Manage gphy power for all CPMU absent PCIe devices. */ | ||
+ | if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT)) | ||
+ | val |= GRC_MISC_CFG_KEEP_GPHY_POWER; | ||
+ | @@ -9254,6 +9252,13 @@ | ||
+ | if (err) | ||
+ | return err; | ||
+ | |||
+ | + /* Set the clock to the highest frequency to avoid timeouts. With link | ||
+ | + * aware mode, the clock speed could be slow and bootcode does not | ||
+ | + * complete within the expected time. Override the clock to allow the | ||
+ | + * bootcode to finish sooner and then restore it. | ||
+ | + */ | ||
+ | + tg3_override_clk(tp); | ||
+ | + | ||
+ | tw32(GRC_MODE, tp->grc_mode); | ||
+ | |||
+ | if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) { | ||
</pre> | </pre> |
Revision as of 12:04, 16 December 2018
PRE BUILD ENVIRONMENT IS ASSUMED ALREADY INSTALLED ON THE SYSTEM YOU'RE BUILDING NOTE: It is assumed you have root access to the system you're building this on. It also assumes you know your CWD (Current Working Directory).
Contents
- 1 Build TomElliott Kernel for FOG 0.32 and earlier
- 2 Build TomElliott Kernel for FOG 0.33b and newer
- 3 Additional Patches
Build TomElliott Kernel for FOG 0.32 and earlier
The below instructions are to build the TomElliott kernel. There is an extra step involved compared to the normal kernel build as there are firmware's built directly into the kernels now.
Download the Kernel
As of the time of this writing kernel 3.13 is the latest. You can use previous, or future kernels as well though.
wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.13.tar.xz
Uncompress the kernel
tar -xf linux-3.13.tar.xz
Go into uncompressed linux kernel directory
cd linux-3.13
Get the config file
wget https://svn.code.sf.net/p/freeghost/code/trunk/kernel/TomElliott.config.32 -O .config
Download the prerequisite package (THE EXTRA STEP IS HERE)
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
Prepare the build
make ARCH=i386 menuconfig
Add any choices, or don't but when you exit, it will ask you to save the config, NEEDED.
After you've saved the config.
Build the bzImage
make ARCH=i386 bzImage
This will take a while. Once successful, it will say bzImage created.
Copy the built kernel to your FOG Server's kernel directory.
NOTE: In my example, the FOG Server is the same as my build system. NOTE: Recommend to make a backup of the original /tftpboot/fog/kernel/bzImage before continuing just in case.
cp arch/x86/boot/bzImage /tftpboot/fog/kernel/bzImage
Build TomElliott Kernel for FOG 0.33b and newer
The below instructions are to build the TomElliott kernel. There is an extra step involved compared to the normal kernel build as there are firmware's built directly into the kernels now.
Download the Kernel
As of the time of this writing kernel 4.17 is the latest. You can use previous, or future kernels as well though.
wget https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.17.tar.xz
Uncompress the kernel
tar -xf linux-4.17.tar.xz
Go into uncompressed linux kernel directory
cd linux-4.17
Get the config file
To Build 32 bit Kernel
wget -O .config https://github.com/FOGProject/fos/raw/master/configs/kernelx86.config
To Build 64 bit Kernel
wget -O .config https://github.com/FOGProject/fos/raw/master/configs/kernelx64.config
Download the prerequisite package (THE EXTRA STEP IS HERE)
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
Prepare the build
To Build 32 bit Kernel
make ARCH=i386 oldconfig
To Build 64 bit Kernel
NOTE: MUST BE ON A 64 BIT OS
make oldconfig
In case you want to make changes to the config run:
make ARCH=i386 menuconfig
or
make oldconfig
Make sure to save when exiting the menuconfig.
Build the bzImage
To Build 32 bit Kernel
make ARCH=i386 bzImage
To Build 64 bit Kernel
make bzImage
This will take a while. Once successful, it will say bzImage created.
Copy the built kernel to your FOG Server's kernel directory.
NOTE: In my example, the FOG Server is the same as my build system. NOTE: Recommend to make a backup of the original /var/www/html/fog/service/ipxe/bzImage before continuing just in case.
cp arch/x86/boot/bzImage /var/www/html/fog/service/ipxe/bzImage
or
cp arch/x86/boot/bzImage /var/www/html/fog/service/ipxe/bzImage32
Additional Patches
Edit the files within the linux decompressed folder:
drivers/net/usb/r8152.c
Search forREALTEK_USB_DEVICE(VENDOR_ID_REALTEKand add this line:
{REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927)}
drivers/scsi/storvsc_drv.c
This is an important patch to help prevent from major performance issues in HyperV: https://forums.fogproject.org/topic/6695/performance-decrease-using-hyper-v-win10-clients
Search forblk_queue_virt_boundary
Delete the line and add:
if (PAGE_SIZE - 1 < 4096) { blk_queue_virt_boundary(sdevice->request_queue, 4096); } else { blk_queue_virt_boundary(sdevice->request_queue, PAGE_SIZE - 1); }
drivers/net/ethernet/broadcom/tg3.c
Important patch to help prevent from network issues with Broadcom NetXtreme BCM5762 Gigabit Ethernet PCIe - https://forums.fogproject.org/post/107707
diff -Nur linux-4.19.6/drivers/net/ethernet/broadcom/tg3.c kernelsourcex64/drivers/net/ethernet/broadcom/tg3.c --- linux-4.19.6/drivers/net/ethernet/broadcom/tg3.c 2018-12-05 12:32:14.000000000 -0600 +++ kernelsourcex64/drivers/net/ethernet/broadcom/tg3.c 2018-12-16 05:50:37.203460130 -0600 @@ -9028,6 +9028,11 @@ case ASIC_REV_5720: tw32(TG3_CPMU_CLCK_ORIDE, CPMU_CLCK_ORIDE_MAC_ORIDE_EN); break; + case ASIC_REV_5762: + val = tr32(TG3_CPMU_CLCK_ORIDE_ENABLE); + tw32(TG3_CPMU_CLCK_ORIDE_ENABLE, val | + TG3_CPMU_MAC_ORIDE_ENABLE); + break; default: return; @@ -9150,13 +9155,6 @@ tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU); } - /* Set the clock to the highest frequency to avoid timeouts. With link - * aware mode, the clock speed could be slow and bootcode does not - * complete within the expected time. Override the clock to allow the - * bootcode to finish sooner and then restore it. - */ - tg3_override_clk(tp); - /* Manage gphy power for all CPMU absent PCIe devices. */ if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT)) val |= GRC_MISC_CFG_KEEP_GPHY_POWER; @@ -9254,6 +9252,13 @@ if (err) return err; + /* Set the clock to the highest frequency to avoid timeouts. With link + * aware mode, the clock speed could be slow and bootcode does not + * complete within the expected time. Override the clock to allow the + * bootcode to finish sooner and then restore it. + */ + tg3_override_clk(tp); + tw32(GRC_MODE, tp->grc_mode); if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {