Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Anton Palgunov
mkimage-profiles
Commits
36e4fca2
Commit
36e4fca2
authored
Jan 05, 2023
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v1.5.1' into sisyphus
v1.5.1
parents
f4392d39
3dcca39a
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
37 additions
and
13 deletions
+37
-13
live.mk
conf.d/live.mk
+1
-1
mixin.mk
conf.d/mixin.mk
+1
-1
regular.mk
conf.d/regular.mk
+1
-1
config.mk
features.in/efi/config.mk
+1
-1
config.mk
features.in/initrd-bootchain/config.mk
+1
-1
generate.mk
features.in/net-ssh/generate.mk
+3
-3
51-root-ssh-key
features.in/net-ssh/rootfs/image-scripts.d/51-root-ssh-key
+10
-0
README
features.in/net/README
+3
-0
config.mk
features.in/net/config.mk
+1
-0
50-net-hostname
features.in/net/rootfs/image-scripts.d/50-net-hostname
+10
-0
config.mk
features.in/syslinux/config.mk
+1
-0
generate.mk
features.in/syslinux/generate.mk
+1
-4
php8.0
pkg.in/lists/server/php8.0
+1
-0
php8.1
pkg.in/lists/server/php8.1
+1
-0
desktop+gnustep
pkg.in/lists/tagged/desktop+gnustep
+1
-1
No files found.
conf.d/live.mk
View file @
36e4fca2
...
@@ -11,7 +11,7 @@ distro/syslinux: distro/.boot \
...
@@ -11,7 +11,7 @@ distro/syslinux: distro/.boot \
endif
endif
ifeq (,$(filter-out i586 x86_64 aarch64 ppc64le riscv64,$(ARCH)))
ifeq (,$(filter-out i586 x86_64 aarch64 ppc64le riscv64,$(ARCH)))
distro/grub: distro/.boot use/grub use/hdt +efi \
distro/grub: distro/.boot use/grub use/hdt
use/memtest
+efi \
use/grub/localboot_bios.cfg use/grub/sdab_bios.cfg; @:
use/grub/localboot_bios.cfg use/grub/sdab_bios.cfg; @:
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
@$(call set,BOOTLOADER,grubpcboot)
@$(call set,BOOTLOADER,grubpcboot)
...
...
conf.d/mixin.mk
View file @
36e4fca2
...
@@ -92,7 +92,7 @@ mixin/regular-cinnamon: use/x11/cinnamon use/x11/lightdm/slick +nm-gtk \
...
@@ -92,7 +92,7 @@ mixin/regular-cinnamon: use/x11/cinnamon use/x11/lightdm/slick +nm-gtk \
mixin/regular-deepin: use/x11/deepin use/browser/chromium +nm; @:
mixin/regular-deepin: use/x11/deepin use/browser/chromium +nm; @:
mixin/regular-gnome3: use/x11/gnome3 use/fonts/ttf/redhat +nm-gtk
mixin/regular-gnome3: use/x11/gnome3 use/fonts/ttf/redhat +nm-gtk
@$(call add,THE_PACKAGES,
gnome3-regular
xcalib templates)
@$(call add,THE_PACKAGES,xcalib templates)
@$(call add,THE_PACKAGES,chrome-gnome-shell)
@$(call add,THE_PACKAGES,chrome-gnome-shell)
@$(call add,THE_PACKAGES,qt5-wayland)
@$(call add,THE_PACKAGES,qt5-wayland)
...
...
conf.d/regular.mk
View file @
36e4fca2
...
@@ -23,7 +23,7 @@ distro/.regular-base: distro/.regular-bare use/vmguest use/memtest use/efi/dtb +
...
@@ -23,7 +23,7 @@ distro/.regular-base: distro/.regular-bare use/vmguest use/memtest use/efi/dtb +
distro/.regular-x11: distro/.regular-base mixin/regular-x11 \
distro/.regular-x11: distro/.regular-base mixin/regular-x11 \
use/x11/wacom use/x11/amdgpu +wireless \
use/x11/wacom use/x11/amdgpu +wireless \
use/live/x11 use/live/repo \
use/live/x11 use/live/repo \
use/live/suspend use/browser/firefox
/live
\
use/live/suspend use/browser/firefox \
use/syslinux/ui/gfxboot use/grub/ui/gfxboot
use/syslinux/ui/gfxboot use/grub/ui/gfxboot
@$(call add,THE_BRANDING,bootloader)
@$(call add,THE_BRANDING,bootloader)
@$(call add,THE_LISTS,$(call tags,(base || desktop) && regular))
@$(call add,THE_LISTS,$(call tags,(base || desktop) && regular))
...
...
features.in/efi/config.mk
View file @
36e4fca2
...
@@ -73,7 +73,7 @@ endif
...
@@ -73,7 +73,7 @@ endif
# copy devicetree for default kernel on ESP partition
# copy devicetree for default kernel on ESP partition
use/efi/dtb: use/efi; @:
use/efi/dtb: use/efi; @:
ifeq (distro,$(IMAGE_CLASS))
ifeq (distro,$(IMAGE_CLASS))
if
neq (,$(filter-out $(aarch64 riscv64)
,$(ARCH)))
if
eq (,$(filter-out aarch64 riscv64
,$(ARCH)))
@$(call set,GLOBAL_COPY_DTB,1)
@$(call set,GLOBAL_COPY_DTB,1)
@$(call add,EFI_FILES_REPLACE,dtb)
@$(call add,EFI_FILES_REPLACE,dtb)
endif
endif
...
...
features.in/initrd-bootchain/config.mk
View file @
36e4fca2
...
@@ -3,7 +3,7 @@ use/initrd-bootchain: use/uuid-iso
...
@@ -3,7 +3,7 @@ use/initrd-bootchain: use/uuid-iso
@$(call set,STAGE1_INITRD,initrd-bootchain)
@$(call set,STAGE1_INITRD,initrd-bootchain)
@$(call set,STAGE1_PACKAGES,make-initrd-bootchain)
@$(call set,STAGE1_PACKAGES,make-initrd-bootchain)
@$(call set,STAGE1_INITRD_TYPEARGS,$(shell echo "root=bootchain bootchain=fg,altboot automatic"))
@$(call set,STAGE1_INITRD_TYPEARGS,$(shell echo "root=bootchain bootchain=fg,altboot automatic"))
@$(call set,STAGE1_INITRD_BOOTMETHOD,$(shell echo "method:
cdrom
,uuid:$(UUID_ISO)"))
@$(call set,STAGE1_INITRD_BOOTMETHOD,$(shell echo "method:
disk
,uuid:$(UUID_ISO)"))
@$(call set,STAGE1_INITRD_STAGE2_OPTION,stagename)
@$(call set,STAGE1_INITRD_STAGE2_OPTION,stagename)
@$(call try,BOOTCHAIN_BC_FGVT_ACTIVATE,7)
@$(call try,BOOTCHAIN_BC_FGVT_ACTIVATE,7)
@$(call try,BOOTCHAIN_WAITDEV_TIMEOUT,)
@$(call try,BOOTCHAIN_WAITDEV_TIMEOUT,)
...
...
features.in/net-ssh/generate.mk
View file @
36e4fca2
...
@@ -3,11 +3,11 @@ ifneq (,$(BUILDDIR))
...
@@ -3,11 +3,11 @@ ifneq (,$(BUILDDIR))
include $(BUILDDIR)/distcfg.mk
include $(BUILDDIR)/distcfg.mk
# prepare the provided public SSH key to be carried over into the image
# prepare the provided public SSH key to be carried over into the image
all:
SSH_DIR = $(BUILDDIR)/files/root/.ssh
all:
TMPDIR = $(BUILDDIR)/files/tmp
all:
all:
@if [ -s "$(SSH_KEY)" ]; then \
@if [ -s "$(SSH_KEY)" ]; then \
mkdir -p
m0700 "$(SSH_
DIR)"; \
mkdir -p
"$(TMP
DIR)"; \
install -pm0600 "$(SSH_KEY)" "$(SSH_DIR)/authorized_keys
"; \
cp -v "$(SSH_KEY)" "$(TMPDIR)/root_ssh_key.pub
"; \
fi
fi
endif
endif
features.in/net-ssh/rootfs/image-scripts.d/51-root-ssh-key
0 → 100755
View file @
36e4fca2
#!/bin/sh -efu
TMPDIR
=
/tmp
SSH_DIR
=
/root/.ssh
if
[
-e
"
$TMPDIR
/root_ssh_key.pub"
]
;
then
mkdir
-pm0700
"
$SSH_DIR
"
install
-v
-pm0600
"
$TMPDIR
/root_ssh_key.pub"
"
$SSH_DIR
/authorized_keys"
rm
-fv
"
$TMPDIR
/root_ssh_key.pub"
fi
features.in/net/README
View file @
36e4fca2
Эта фича конфигурирует базовую поддержку сети, включая нужную подсистему
Эта фича конфигурирует базовую поддержку сети, включая нужную подсистему
(etcnet, NetworkManager поверх etcnet или connman).
(etcnet, NetworkManager поверх etcnet или connman).
Используйте TARGET_HOSTNAME для определения имени узла (файлы
/etc/sysconfig/network и /etc/hostname).
features.in/net/config.mk
View file @
36e4fca2
...
@@ -7,6 +7,7 @@ use/net: use/services use/pkgpriorities
...
@@ -7,6 +7,7 @@ use/net: use/services use/pkgpriorities
@$(call add,THE_PACKAGES,iputils)
@$(call add,THE_PACKAGES,iputils)
@$(call add,PINNED_PACKAGES,$$(THE_NET_SUBSYS))
@$(call add,PINNED_PACKAGES,$$(THE_NET_SUBSYS))
@$(call set,THE_NET_SUBSYS,network-config-subsystem)
@$(call set,THE_NET_SUBSYS,network-config-subsystem)
@$(call xport,TARGET_HOSTNAME)
use/net/etcnet: use/net
use/net/etcnet: use/net
@$(call set,THE_NET_SUBSYS,etcnet)
@$(call set,THE_NET_SUBSYS,etcnet)
...
...
features.in/net/rootfs/image-scripts.d/50-net-hostname
0 → 100755
View file @
36e4fca2
#!/bin/sh -efu
#
# Sets up the node's hostname.
.
shell-config
if
[
-n
"
${
GLOBAL_TARGET_HOSTNAME
:-}
"
]
;
then
shell_config_set /etc/sysconfig/network
'TARGET_HOSTNAME'
"
$GLOBAL_TARGET_HOSTNAME
"
echo
"
$GLOBAL_TARGET_HOSTNAME
"
>
/etc/hostname
fi
features.in/syslinux/config.mk
View file @
36e4fca2
...
@@ -7,6 +7,7 @@ use/syslinux: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
...
@@ -7,6 +7,7 @@ use/syslinux: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
@$(call try,BOOTVGA,normal)
@$(call try,BOOTVGA,normal)
@$(call add,SYSLINUX_FILES,/usr/lib/syslinux/pxelinux.0)
@$(call add,SYSLINUX_FILES,/usr/lib/syslinux/pxelinux.0)
@$(call try,META_SYSTEM_ID,SYSLINUX)
@$(call try,META_SYSTEM_ID,SYSLINUX)
@$(call try,SYSLINUX_UI,none)
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
@$(call xport,SYSLINUX_DEFAULT)
@$(call xport,SYSLINUX_DEFAULT)
else
else
...
...
features.in/syslinux/generate.mk
View file @
36e4fca2
...
@@ -16,11 +16,8 @@ STAGE1_INITRD_BOOTARGS := $(STAGE1_INITRD_TYPEARGS)=$(STAGE1_INITRD_BOOTMETHOD)
...
@@ -16,11 +16,8 @@ STAGE1_INITRD_BOOTARGS := $(STAGE1_INITRD_TYPEARGS)=$(STAGE1_INITRD_BOOTMETHOD)
# UI is backed by modules in modern syslinux
# UI is backed by modules in modern syslinux
# (except for built-in text prompt)
# (except for built-in text prompt)
ifneq (,$(SYSLINUX_UI))
ifneq (
none
,$(SYSLINUX_UI))
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
else
$(warning no syslinux ui configured, default is now none)
SYSLINUX_UI := none
endif
endif
ifeq (,$(SYSLINUX_DIRECT))
ifeq (,$(SYSLINUX_DIRECT))
...
...
pkg.in/lists/server/php8.0
View file @
36e4fca2
...
@@ -13,6 +13,7 @@ php8.0-mbstring
...
@@ -13,6 +13,7 @@ php8.0-mbstring
php8.0-mcrypt
php8.0-mcrypt
php8.0-memcached
php8.0-memcached
php8.0-mysqlnd
php8.0-mysqlnd
php8.0-mysqlnd-mysqli
php8.0-pdo
php8.0-pdo
php8.0-pdo_mysql
php8.0-pdo_mysql
php8.0-pdo_odbc
php8.0-pdo_odbc
...
...
pkg.in/lists/server/php8.1
View file @
36e4fca2
...
@@ -13,6 +13,7 @@ php8.1-mbstring
...
@@ -13,6 +13,7 @@ php8.1-mbstring
php8.1-mcrypt
php8.1-mcrypt
php8.1-memcached
php8.1-memcached
php8.1-mysqlnd
php8.1-mysqlnd
php8.1-mysqlnd-mysqli
php8.1-pdo
php8.1-pdo
php8.1-pdo_mysql
php8.1-pdo_mysql
php8.1-pdo_odbc
php8.1-pdo_odbc
...
...
pkg.in/lists/tagged/desktop+gnustep
View file @
36e4fca2
...
@@ -92,7 +92,7 @@ gnustep-PictureFrame
...
@@ -92,7 +92,7 @@ gnustep-PictureFrame
gnustep-Pixen
gnustep-Pixen
gnustep-PlopFolio
gnustep-PlopFolio
gnustep-Poe
gnustep-Poe
gnustep-Popup
#
gnustep-Popup
gnustep-Preview
gnustep-Preview
gnustep-PRICE
gnustep-PRICE
#gnustep-projectcenter
#gnustep-projectcenter
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment