diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 22:51:55 +0000 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 22:51:55 +0000 |
commit | 2e2f8f359c865382cbc138e4572ab9a63d736775 (patch) | |
tree | f76a820e8f39d46926ad0e6a5dc8f478ae429615 /chapter10/linux.sh | |
parent | e4633200ea4609597950f991ce43f1a4d9f3cfbb (diff) | |
parent | 6b11f48c20f4411008c28ccb86463a98c0f06fef (diff) |
Merge branch 'chapter10'
Diffstat (limited to 'chapter10/linux.sh')
-rw-r--r-- | chapter10/linux.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chapter10/linux.sh b/chapter10/linux.sh new file mode 100644 index 0000000..143c692 --- /dev/null +++ b/chapter10/linux.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +make mrproper && +cp -v ../kernelconfig .config && +yes "" | make oldconfig && +make "${MAKEFLAGS}" && +make modules_install && +cp -iv arch/x86_64/boot/bzImage /boot/linux-"${VERSION}" && +cp -iv System.map /boot/System.map-"${VERSION}" && +cp -iv .config /boot/config-"${VERSION}" && + +install -dv /usr/share/doc/linux-"${VERSION}" && +cp -rv Documentation/* /usr/share/doc/linux-"${VERSION}" |