Skip to content

Commit

Permalink
linux-4.4.14: Strip trailing whitespace
Browse files Browse the repository at this point in the history
Run the command `StripWhitespace` from *Vim Better Whitespace Plugin*
[1].

[1] https://github.com/ntpeters/vim-better-whitespace
  • Loading branch information
pmenzel committed Jun 28, 2016
1 parent fc93b82 commit 878f99d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions linux-4.4.14-90.bee
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,25 @@ mee_configure() {
else
RUNNING=/boot/config-$(uname -r)
fi

: ${CONFIG:=${RUNNING}}

if [ ! -e ${CONFIG} ] ; then
echo "can't find config '${CONFIG}'"
exit 1
fi

cp -v ${CONFIG} .config

LOCALVERSION="\"${KERNELLOCAL}\""
sed -i -e "s@CONFIG_LOCALVERSION=.*@CONFIG_LOCALVERSION=${LOCALVERSION}@" .config

echo "doing make -C ${S} olddefconfig in ${PWD} .."

make olddefconfig

echo "doing make -C ${S} menuconfig in ${PWD} .."

make menuconfig
}

Expand All @@ -71,12 +71,12 @@ mee_install() {
make modules_install INSTALL_MOD_PATH=${D}
make install INSTALL_PATH=${D}/boot
# make firmware_install INSTALL_MOD_PATH=${D}

rm -v ${D}/lib/modules/${FULLKERNELVERSION}/{source,build}
ln -sv /usr/src/linux/${PKGALLPKG}/source ${D}/lib/modules/${FULLKERNELVERSION}/source

ln -sv /usr/src/linux/${PKGALLPKG}/source ${D}/lib/modules/${FULLKERNELVERSION}/source
ln -sv /usr/src/linux/${PKGALLPKG}/build ${D}/lib/modules/${FULLKERNELVERSION}/build

ln -sv bzImage-${FULLKERNELVERSION} ${D}/boot/mariux.${PKGREVISION}
}

0 comments on commit 878f99d

Please sign in to comment.