Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion live/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ARCH = $(shell uname -m)
# files to copy from src/
COPY_FILES = $(patsubst $(SRCDIR)/%,$(DESTDIR)/%,$(wildcard $(SRCDIR)/*))

all: $(DESTDIR) $(COPY_FILES) $(DESTDIR)/config-cdroot.tar.xz $(DESTDIR)/root.tar.xz $(DESTDIR)/root-PXE.tar.xz
all: $(DESTDIR) $(COPY_FILES) $(DESTDIR)/config-cdroot.tar.xz $(DESTDIR)/live-root.tar.xz $(DESTDIR)/live-root-PXE.tar.xz

# clean the destination directory (but keep the .osc directory if it is present)
clean:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 0 additions & 10 deletions live/root/.mozilla/firefox/profile/user.js.template

This file was deleted.

7 changes: 0 additions & 7 deletions live/root/root/.xinitrc

This file was deleted.

8 changes: 8 additions & 0 deletions live/src/agama-installer.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Apr 23 08:39:34 UTC 2025 - Ladislav Slezák <lslezak@suse.com>

- Rename "root" source directory to "live-root" to avoid confusion
with root/root directory
- Removed duplicate files which are located in root/root
(live-root/root now)

-------------------------------------------------------------------
Wed Apr 23 05:47:23 UTC 2025 - Ladislav Slezák <lslezak@suse.com>

Expand Down
4 changes: 2 additions & 2 deletions live/src/agama-installer.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<package name="NetworkManager-config-server"/>
<package name="dracut-kiwi-oem-repart"/>
<package name="dracut-kiwi-oem-dump"/>
<archive name="root-PXE.tar.xz"/>
<archive name="live-root-PXE.tar.xz"/>
</packages>

<!-- common set of packages (SSH-based and remote installation, etc.) -->
Expand Down Expand Up @@ -156,7 +156,7 @@
<package name="qrencode"/>
<package name="qemu-guest-agent" />
<package name="aaa_base-extras"/>
<archive name="root.tar.xz"/>
<archive name="live-root.tar.xz"/>
</packages>

<!-- packages for local installation (desktop, browser, etc.) -->
Expand Down
2 changes: 1 addition & 1 deletion live/test/info_cmdline_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require "cheetah"

describe "info-cmdline-conf.sh" do
let(:script_path) { File.expand_path("../root/usr/bin/info-cmdline-conf.sh", __dir__, ) }
let(:script_path) { File.expand_path("../live-root/usr/bin/info-cmdline-conf.sh", __dir__, ) }

context "There is no info parameter" do
let(:source_path) { File.expand_path("fixtures/source/cmdline", __dir__, ) }
Expand Down
2 changes: 1 addition & 1 deletion live/test/kernel_cmdline_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

describe "kernel-cmdline-conf.sh" do
it "filters out any agama params" do
script_path = File.expand_path("../root/usr/bin/kernel-cmdline-conf.sh", __dir__, )
script_path = File.expand_path("../live-root/usr/bin/kernel-cmdline-conf.sh", __dir__, )
source_path = File.expand_path("fixtures/source/cmdline", __dir__, )
expected_path = File.expand_path("fixtures/expected/cmdline", __dir__, )
tmpdir = Dir.mktmpdir do |tmpdir|
Expand Down