File tree Expand file tree Collapse file tree 6 files changed +16
-37
lines changed
live-build-config/includes.chroot/opt/vyatta/etc/grub Expand file tree Collapse file tree 6 files changed +16
-37
lines changed Original file line number Diff line number Diff line change @@ -31,28 +31,28 @@ test-no-interfaces: checkiso
31
31
.PHONY : testc
32
32
.ONESHELL :
33
33
testc : checkiso
34
- scripts/check-qemu-install --debug --configd --configtest build/live-image-amd64.hybrid.iso
34
+ scripts/check-qemu-install --debug --configd --configtest build/live-image-amd64.hybrid.iso $( filter-out $@ , $( MAKECMDGOALS ) )
35
35
36
36
.PHONY : testraid
37
37
.ONESHELL :
38
38
testraid : checkiso
39
- scripts/check-qemu-install --debug --configd --raid --configtest build/live-image-amd64.hybrid.iso
39
+ scripts/check-qemu-install --debug --configd --raid --configtest build/live-image-amd64.hybrid.iso $(filter-out $@ ,$(MAKECMDGOALS ) )
40
+
41
+ .PHONY : testtpm
42
+ .ONESHELL :
43
+ testtpm : checkiso
44
+ scripts/check-qemu-install --debug --tpmtest build/live-image-amd64.hybrid.iso $(filter-out $@ ,$(MAKECMDGOALS ) )
40
45
41
46
.PHONY : qemu-live
42
47
.ONESHELL :
43
48
qemu-live : checkiso
44
- scripts/check-qemu-install --qemu-cmd build/live-image-amd64.hybrid.iso
49
+ scripts/check-qemu-install --qemu-cmd --uefi build/live-image-amd64.hybrid.iso $( filter-out $@ , $( MAKECMDGOALS ) )
45
50
46
- .PHONE : oci
51
+ .PHONY : oci
47
52
.ONESHELL :
48
53
oci : checkiso
49
54
scripts/iso-to-oci build/live-image-amd64.hybrid.iso
50
55
51
- .PHONY : testtpm
52
- .ONESHELL :
53
- testtpm : checkiso
54
- scripts/check-qemu-install --debug --tpmtest build/live-image-amd64.hybrid.iso
55
-
56
56
.PHONY : clean
57
57
.ONESHELL :
58
58
clean :
Original file line number Diff line number Diff line change @@ -14,6 +14,4 @@ packages = [
14
14
" vyos-intel-ixgbevf" ,
15
15
" mlnx-ofed-kernel-modules" ,
16
16
" mlnx-tools" ,
17
- " openvpn-dco" ,
18
- " telegraf"
19
17
]
Original file line number Diff line number Diff line change @@ -5,5 +5,7 @@ additional_repositories = [
5
5
kernel_flavor = " arm64-vyos"
6
6
7
7
# Packages included in ARM64 images by default
8
- packages = [" grub-efi-arm64" , " openvpn-dco" ]
8
+ packages = [
9
+ " grub-efi-arm64" ,
10
+ ]
9
11
bootloaders = " grub-efi"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 50
50
org.opencontainers.image.title="vyos-build" \
51
51
org.opencontainers.image.description="Container to build VyOS ISO" \
52
52
org.opencontainers.image.base.name="docker.io/debian/debian:bookworm"
53
- ENV DEBIAN_FRONTEND noninteractive
53
+ ENV DEBIAN_FRONTEND= noninteractive
54
54
55
55
RUN /bin/echo -e 'APT::Install-Recommends "0";\n APT::Install-Suggests "0";' > /etc/apt/apt.conf.d/01norecommends
56
56
@@ -60,9 +60,9 @@ RUN apt-get update && apt-get install -y \
60
60
locales
61
61
62
62
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
63
- ENV LANG en_US.utf8
63
+ ENV LANG= en_US.utf8
64
64
65
- ENV OCAML_VERSION 4.14.2
65
+ ENV OCAML_VERSION= 4.14.2
66
66
67
67
# Base packaged needed to build packages and their package dependencies
68
68
RUN apt-get update && apt-get install -y \
Original file line number Diff line number Diff line change 43
43
import tomli
44
44
import jinja2
45
45
import git
46
- import psutil
47
46
except ModuleNotFoundError as e :
48
47
print (f"E: Cannot load required library { e } " )
49
- print ("E: Please make sure the following Python3 modules are installed: tomli jinja2 git psutil " )
48
+ print ("E: Please make sure the following Python3 modules are installed: tomli jinja2 git" )
50
49
sys .exit (1 )
51
50
52
51
# Import local defaults
You can’t perform that action at this time.
0 commit comments