Initilize Repository, adding makefile, packages list and wallpaper for grub.
This commit is contained in:
commit
0f27790968
4 changed files with 154 additions and 0 deletions
34
makefile
Executable file
34
makefile
Executable file
|
@ -0,0 +1,34 @@
|
|||
#!/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↵
|
||||
lb clean --all
|
||||
lb config --debug --distribution bookworm --backports true --archive-areas "main contrib non-free non-free-firmware" --hdd-label SYRIUS --image-name SIRUS-bookworm
|
||||
#lb config --debug --distribution bookworm --backports true --archive-areas "main contrib non-free non-free-firmware" --hdd-label SYRIUS --image-name SIRUS-bookworm
|
||||
#lb config --debug --distribution bookworm --backports true --archive-areas "main contrib non-free non-free-firmware" --uefi-secure-boot enable --hdd-label SYRIUS --image-name SIRUS-bookworm --linux-packages "linux-image linux-headers"
|
||||
# add debian installer
|
||||
echo "debian-installer-launcher" > config/package-lists/installer.list.chroot
|
||||
# add User-Config
|
||||
mkdir -p config/includes.chroot/etc/skel/.config/gnome
|
||||
#echo -e "task-gnome-desktop" > config/package-lists/desktop.list.chroot
|
||||
#echo -e "sysfsutils\nxorg\nxserver-xorg\ngnome-core" > config/package-lists/desktop.list.chroot
|
||||
#echo -e "xorg\nxserver-xorg-core\ntask-gnome-desktop" > config/package-lists/desktop.list.chroot
|
||||
#echo "alsa-utils bat chrome-gnome-shell cups-common \
|
||||
#dbus-user-session dbus-x11 dconf-editor firefox-esr fuse3 gdm3 gjs gkbd-capplet gnome-applets \
|
||||
#gnome-control-center gnome-disk-utility gnome-keyring gnome-online-accounts gnome-session \
|
||||
#gnome-shell-extension-dashtodock gnome-shell-extensions gnome-shell-extensions-extra \
|
||||
#gnome-shell-extension-manager gnome-terminal gnome-tweaks mutter nautilus nautilus-extension-gnome-terminal \
|
||||
#network-manager-gnome power-profiles-daemon rclone sane-airscan sane-utils seahorse software-properties-gtk \
|
||||
#sudo xdg-desktop-portal xdg-desktop-portal-gnome xdg-desktop-portal-gtk xdg-user-dirs" > config/package-lists/desktop.list.chroot
|
||||
# Customize gnome
|
||||
#cp sirius.png config/includes.chroot/etc/skel/.config/gnome/
|
||||
# update grub
|
||||
sudo cp -r /usr/share/live/build/bootloaders config/
|
||||
sudo cp ../sirius.png config/bootloaders/grub-pc/splash.png
|
||||
cat packages.list > config/package-lists/desktop.list.chroot
|
||||
lb build 2>&1 | tee build.log
|
Loading…
Add table
Add a link
Reference in a new issue