cad1891021
Added three patches to fix the mmc issue as described here: https://github.com/SolidHal/Librean/issues/17 Source for the patches is the chrome os kernel. Links to the commits can be found in the issue. Locking into version 4.17.2 for the time being. Better organized patches. Added logic to only apply tested patches on fresh kernel. Moved some debian build improvements in from my devsus master branch, including switching from xfce to lxqt. May be able to add option between the two in the future, as the issue that led to switching DEs may have been with the xorg video drivers that are now skipped by the script and not xfce itself. Cleaned up uneeded old configs
14 lines
522 B
Bash
Executable File
14 lines
522 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
#Runs Make menuconfig with the proper enviroment vars for cross compiling arm
|
|
#Grabs the file named config in the same directory as this script, and updates it
|
|
|
|
KVER=4.17.2
|
|
|
|
[ ! -f linux-libre-$KVER-gnu.tar.lz ] && wget https://www.linux-libre.fsfla.org/pub/linux-libre/releases/$KVER-gnu/linux-libre-$KVER-gnu.tar.lz
|
|
[ ! -d linux-$KVER ] && tar --lzip -xvf linux-libre-$KVER-gnu.tar.lz
|
|
cd linux-$KVER
|
|
cp ../config .config
|
|
make menuconfig ARCH=arm CROSS_COMPILE=arm-none-eabi- .config
|
|
cp .config ../config
|