From d36860f4b105a8d3180e110ed0322ff36760ed69 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sat, 20 Aug 2022 12:30:05 +0200 Subject: [PATCH] Remove lineage-build documentation --- arch-config/Dokumente/lineageos-build.md | 141 ----------------------- 1 file changed, 141 deletions(-) delete mode 100644 arch-config/Dokumente/lineageos-build.md diff --git a/arch-config/Dokumente/lineageos-build.md b/arch-config/Dokumente/lineageos-build.md deleted file mode 100644 index 24a2bd32..00000000 --- a/arch-config/Dokumente/lineageos-build.md +++ /dev/null @@ -1,141 +0,0 @@ -# Build LineageOS -https://wiki.lineageos.org/devices/oneplus3/build -https://dzx.fr/blog/how-to-compile-the-wireguard-kernel-module-for-lineageos/ - -## Preparing environment -I'll be using a container to keep my main system clean - -Adapted from [How to build LineageOS inside a container](https://dzx.fr/blog/how-to-build-lineageos-inside-a-container/) - -``` -$ podman run -itd --name lineageos-build \ - -v /mnt/storage/lineageos-build:/var/lineageos-build \ - -v /home/marc/lineageos-cache:/var/lineageos-cache \ - docker.io/ubuntu:jammy-20220531 -``` - -Enter the newly created container -`$ podman exec -it lineageos-build bash` - -Install the necessary packages -`# apt update` -`# apt install bc bison build-essential ccache curl flex g++-multilib gcc-multilib git gnupg gperf imagemagick lib32ncurses5-dev lib32readline-dev lib32z1-dev liblz4-tool libncurses5 libncurses5-dev libsdl1.2-dev libssl-dev libxml2 libxml2-utils lzop pngcrush rsync schedtool squashfs-tools xsltproc zip zlib1g-dev python-is-python3 vim` - -Add an unpriviledged user for building -Make sure it can access the lineageos folders mounted -`# adduser --disabled-password (user)` -`# chown (user):(user) -R /var/lineageos-*` -`# su exu` - -Set cache and export to bashrc -Create the file `~/.config/ccache/ccache.conf` -``` -max_size = 30G -cache_dir = /var/lineageos-cache -``` - -`$ export PATH="${PATH}:/home/exu/.local/bin"` -`$ echo 'export USE_CCACHE=1' >> ~/.bashrc` - -### Install repo tool -``` -$ mkdir -p ~/.local/bin/ -$ source ~/.profile -``` - -``` -$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.local/bin/repo -$ chmod a+x ~/.local/bin/repo -``` - -``` -$ git config --global user.email mrc@frm01.net -$ git config --global user.name RealStickman -``` - -### Get source lineage code -``` -$ mkdir -p /var/lineageos-build/lineage/ -$ cd /var/lineageos-build/lineage/ -``` - -Initialize the repo -`$ repo init -u https://github.com/LineageOS/android.git -b lineage-18.1` - -Sync repo content -This can take a long time -`$ repo sync` - -Repo fetches the latest version automatically, so we can use a symlink -`$ ln -sf /var/lineageos-build/lineage/.repo/repo/repo ~/.local/bin/repo` - -## Add Wireguard patch to kernel - -### Fetch source -Create the file `(SRC_DIR)/.repo/local_manifests/wireguard.xml` -`(SRC_DIR)` is your `.../lineage/` directory -Make sure to replace `(KERNEL_DIR)` with your device's kernel directory. -For example `(SRC_DIR)/kernel/oneplus/msm8996` -``` - - - - - - - - -``` - -Run `repo sync` - -### Add kernel patch -Edit `(KERNEL_DIR)/net/Makefile` -``` - obj-$(CONFIG_LLC) += llc/ - obj-$(CONFIG_NET) += ethernet/ 802/ sched/ netlink/ - obj-$(CONFIG_NETFILTER) += netfilter/ -+obj-$(CONFIG_WIREGUARD) += wireguard/ - obj-$(CONFIG_INET) += ipv4/ - obj-$(CONFIG_XFRM) += xfrm/ - obj-$(CONFIG_UNIX) += unix/ -``` - -Edit `(KERNEL_DIR)/net/Kconfig` -``` - if INET - source "net/ipv4/Kconfig" - source "net/ipv6/Kconfig" - source "net/netlabel/Kconfig" -+source "net/wireguard/Kconfig" -``` - -Edit `(KERNEL_DIR)/arch/(ARCH)/configs/lineageos_(DEVICE)_defconfig` - -``` - CONFIG_L2TP=y - CONFIG_BRIDGE=y -+CONFIG_WIREGUARD=y -``` - -## Download device source files -Activate the build environment -`$ . ./build/envsetup.sh` - -Finally, download device specific source files -`$ breakfast DEVICE_CODENAME` -Device names: -``` -oneplus3 -``` - -If `breakfast` fails, you need to extract the proprietary blobs -[Extract blobs from the device](https://wiki.lineageos.org/devices/oneplus3/build#extract-proprietary-blobs) or [Extract blobs from LineageOS zip files](https://wiki.lineageos.org/extracting_blobs_from_zips) - -## Start build -Full build -`$ brunch DEVICE_CODENAME` - -Kernel only -`$ mka bootimage` -