2024-04-25 20:08:38 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# Change the default shell /bin/sh which does not implement 'source'
|
|
|
|
# source is needed to work in a python virtualenv
|
|
|
|
SHELL := /bin/bash
|
|
|
|
|
|
|
|
##############################
|
|
|
|
|
|
|
|
build:
|
|
|
|
# Build the live system/ISO image↵
|
|
|
|
sudo lb clean --all
|
2024-06-08 11:34:57 +02:00
|
|
|
#sudo lb config --image-name CEPHEUS-CALAMARES- --hdd-label CEPHEUS-CALAMARES- --archive-areas main non-free-firmware
|
|
|
|
#sudo lb config --distribution bullseye --image-name CEPHEUS- --hdd-label CEPHEUS --archive-areas main non-free-firmware
|
|
|
|
sudo lb config --debug --distribution bookworm --debian-installer live --backports true --archive-areas "main contrib non-free non-free-firmware" --hdd-label CEPHEUS-bookworm --uefi-secure-boot disable --image-name CEPHEUS-bookworm --linux-packages "linux-image linux-headers"
|
2024-04-25 20:08:38 +02:00
|
|
|
#lb config --debug --debian-installer live --distribution bookworm --backports true --archive-areas "main contrib non-free non-free-firmware" --uefi-secure-boot disable --hdd-label CEPHEUS --image-name CEPHEUS-bookworm --linux-packages "linux-image linux-headers"
|
|
|
|
# configure installer
|
|
|
|
echo "debian-installer-launcher" > config/package-lists/installer.list.chroot
|
|
|
|
echo "d-i debian-installer/locale string en_UK" > config/includes.installer/preseed.cfg
|
|
|
|
# add packages
|
|
|
|
cat packages.list > config/package-lists/desktop.list.chroot
|
|
|
|
# add User-Config
|
2024-06-08 11:34:57 +02:00
|
|
|
#mkdir -p config/includes.chroot/etc/calamares/modules/
|
|
|
|
# dir for color scheme for vim
|
2024-04-25 20:08:38 +02:00
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/colors
|
2024-06-08 11:34:57 +02:00
|
|
|
# vim packages installer
|
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/bundle
|
|
|
|
# vim packages
|
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/nerdtree
|
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/plugin
|
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/bundle/YouCompleteMe
|
|
|
|
mkdir -p config/includes.chroot/etc/skel/.vim/pack/tpope/start
|
|
|
|
# i3
|
2024-04-25 20:08:38 +02:00
|
|
|
mkdir -p config/includes.chroot/etc/skel/.config/i3
|
2024-06-08 11:34:57 +02:00
|
|
|
# systemd
|
|
|
|
mkdir -p config/includes.chroot/etc/systemd/system
|
|
|
|
# config for vim
|
|
|
|
git clone https://github.com/gmarik/Vundle.vim.git config/includes.chroot/etc/skel/.vim/plugin/Vundle.vim
|
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git config/includes.chroot/etc/skel/.vim/bundle/vundle.vim
|
|
|
|
git clone https://github.com/ycm-core/YouCompleteMe.git config/includes.chroot/etc/skel/.vim/bundle/YouCompleteMe/
|
|
|
|
git clone https://tpope.io/vim/fugitive.git config/includes.chroot/etc/skel/.vim/pack/tpope/start/
|
|
|
|
git clone https://github.com/preservim/nerdtree config/includes.chroot/etc/skel/.vim/nerdtree/
|
|
|
|
# set list of packages to remove by calamares after installation
|
|
|
|
#cp packages.conf config/includes.chroot/etc/calamares/modules/
|
|
|
|
# add script for modifying live build
|
|
|
|
#cp modifier.sh config/hooks/live/startscript.hook.chroot
|
|
|
|
# set i3 configuration
|
2024-04-25 20:08:38 +02:00
|
|
|
cp i3config config/includes.chroot/etc/skel/.config/i3/config
|
|
|
|
cp kraut.png config/includes.chroot/etc/skel/.config/i3/
|
2024-06-08 11:34:57 +02:00
|
|
|
# add vimrc for costumizing vim
|
|
|
|
cp vimrc config/includes.chroot/etc/skel/.vimrc
|
|
|
|
# add color scheme for vim
|
2024-04-25 20:08:38 +02:00
|
|
|
cp forest_refuge.vim config/includes.chroot/etc/skel/.vim/colors/
|
|
|
|
echo "exec --no-startup-id feh --bg-scale /home/user/.config/i3/kraut.png" >>config/includes.chroot/etc/skel/.config/i3/config
|
2024-06-08 11:34:57 +02:00
|
|
|
#echo "exec --no-startup-id feh --geometry 1920x1080+0+0 /home/user/.config/i3/kraut.png" >>config/includes.chroot/etc/skel/.config/i3/config
|
2024-04-25 20:08:38 +02:00
|
|
|
# modify grub -> not in VM with QEMU??
|
|
|
|
cp -r /usr/share/live/build/bootloaders config/
|
2024-06-08 11:34:57 +02:00
|
|
|
cp My_cephei_pxi.png config/bootloaders/grub-pc/splash.png
|
2024-04-25 20:08:38 +02:00
|
|
|
sudo lb build 2>&1 | tee build.log
|