Skip to content
Greg Pearson edited this page Jan 4, 2018 · 7 revisions

Welcome to the linux-l4fame wiki!

Merging upstream linux-stable changes into mdc branch (example using linux-4.14.y branch)

git clone [email protected]:FabricAttachedMemory/linux-l4fame.git
cd linux-l4fame
git remote add upstream https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
git fetch upstream
git checkout mdc/linux-4.14.y
git merge upstream/linux-4.14.y
git push

Building Debian kernel package for MFT (this can be done on a "torms" system)

sudo apt-get install build-essential libssl-dev gcc-aarch64-linux-gnu fakeroot
git clone https://github.com/FabricAttachedMemory/linux-l4fame.git
cd linux-l4fame
git checkout mdc/linux-4.14.y
cp config.arm64-mft .config
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -s -j40 bindeb-pkg

Building RPM kernel package for Hawks systems running RHEL/SLES (this can be done on a "torms" system)

sudo apt-get install build-essential libssl-dev fakeroot rpm
git clone https://github.com/FabricAttachedMemory/linux-l4fame.git
cd linux-l4fame
git checkout mdc/linux-4.14.y
cp config.x86_64-hawks2 .config
make -j40 binrpm-pkg
# install on target system with "yum install <kernel.rpm>" or "rpm -ivh kernel.rpm"