[fedora-kickstarts] branch f33 updated: IoT: armhfp fix, updates for stable
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a commit to branch f33
in repository fedora-kickstarts.
The following commit(s) were added to refs/heads/f33 by this push:
new c7036c7 IoT: armhfp fix, updates for stable
c7036c7 is described below
commit c7036c7f02998433c0bbed749f5de065678a1ad0
Author: Peter Robinson <pbrobinson(a)fedoraproject.org>
AuthorDate: Tue Oct 27 19:48:13 2020 +0000
IoT: armhfp fix, updates for stable
---
fedora-iot.ks | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/fedora-iot.ks b/fedora-iot.ks
index 2346568..a109fcc 100644
--- a/fedora-iot.ks
+++ b/fedora-iot.ks
@@ -19,16 +19,19 @@ autopart --nohome --noswap --type=plain
# Equivalent of %include fedora-repo.ks
# Pull from the ostree repo that was created during the compose
-ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/devel/${basearch}/iot
+ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/stable/${basearch}/iot
reboot
%post --erroronfail
# Find the architecture we are on
arch=$(uname -m)
+if [[ $arch == "armv7l" ]]; then
+ arch="armhfp"
+fi
# Setup Raspberry Pi firmware
-if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
+if [[ $arch == "aarch64" ]] || [[ $arch == "armhfp" ]]; then
if [[ $arch == "aarch64" ]]; then
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
@@ -41,14 +44,14 @@ fi
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
# We want consumers of this image to track the two week releases.
-ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/devel/${arch}/iot"
+ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/stable/${arch}/iot"
# Make sure the ref we're supposedly sitting on (according
# to the updated origin) exists.
-ostree refs "fedora-iot:fedora/devel/${arch}/iot" --create "fedora-iot:fedora/devel/${arch}/iot"
+ostree refs "fedora-iot:fedora/stable/${arch}/iot" --create "fedora-iot:fedora/stable/${arch}/iot"
# Remove the old ref so that the commit eventually gets cleaned up.
-ostree refs "fedora-iot:fedora/devel/${arch}/iot" --delete
+ostree refs "fedora-iot:fedora/stable/${arch}/iot" --delete
# delete/add the remote with new options to enable gpg verification
# and to point them at the cdn url
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch master updated (9ea7904 -> 0d39a98)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a change to branch master
in repository fedora-kickstarts.
from 9ea7904 IoT: we should be using the basearch across all ostree cmds
add 0d39a98 Fix arch detection to use armhfp.
No new revisions were added by this update.
Summary of changes:
fedora-iot.ks | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
Gtk condition using X server
by Eduard Lucena
Hi,
I'm working with the i3 SIG in create an i3 Spin, but while testing we
found that running in baremetal, the command liveinst throw an error:
[liveuser@localhost ~]$ liveinst
Starting installer, one moment...
anaconda 32.24.7-2.fc32 for Fedora 32 started.
* installation log files are stored in /tmp during the installation
* shell is available on TTY2 and in second TMUX pane (ctrl+b, then press 2)
* when reporting a bug add logs from /tmp as separate text/plain
attachments
No protocol specified
No protocol specified
Traceback (most recent call last):
File "/sbin/anaconda", line 583, in <module>
display.setup_display(anaconda, opts)
File "/usr/lib64/python3.8/site-packages/pyanaconda/display.py", line
339, in setup_display
anaconda.initInterface()
File "/usr/lib64/python3.8/site-packages/pyanaconda/anaconda.py", line
273, in initInterface
self._intf = GraphicalUserInterface(None, self.payload,
File "/usr/lib64/python3.8/site-packages/pyanaconda/ui/gui/__init__.py",
line 664, in __init__
self.mainWindow = MainWindow(fullscreen=fullscreen,
decorated=conf.ui.decorated_window)
File "/usr/lib64/python3.8/site-packages/pyanaconda/ui/gui/__init__.py",
line 350, in __init__
super().__init__()
File "/usr/lib64/python3.8/site-packages/gi/overrides/Gtk.py", line 520,
in __init__
raise RuntimeError(
RuntimeError: Gtk couldn't be initialized. Use Gtk.init_check() if you want
to handle this case.
And we found this error can be avoided by using the command:
xhost si:localuser:root
And then launch the installer.
Did this happen to you in your spins? How would you try a problem like this?
Br,
--
Eduard "x3mboy" Lucena
Móvil: +56962318010
GNU/Linux User #589060
Ubuntu User #8749
Fedora Marketing Representative
2 years, 7 months
[fedora-kickstarts] branch master updated (e4ab607 -> 9ea7904)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a change to branch master
in repository fedora-kickstarts.
from e4ab607 ELN: Do not install fedora-repos-modular.
add 9ea7904 IoT: we should be using the basearch across all ostree cmds
No new revisions were added by this update.
Summary of changes:
fedora-iot.ks | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch master updated (2cccb19 -> e4ab607)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from 2cccb19 ELN: The 'eln-modular' repo is not installed anymore.
add e4ab607 ELN: Do not install fedora-repos-modular.
No new revisions were added by this update.
Summary of changes:
fedora-eln-container-base.ks | 2 --
1 file changed, 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch master updated (6669bac -> 2cccb19)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
humaton pushed a change to branch master
in repository fedora-kickstarts.
from 6669bac drop rng-tools from arm-base and disk-base
add 2cccb19 ELN: The 'eln-modular' repo is not installed anymore.
No new revisions were added by this update.
Summary of changes:
fedora-eln-container-base.ks | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch f33 updated (73b5f6e -> 9a45c1d)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch f33
in repository fedora-kickstarts.
from 73b5f6e Bump KDE to fix failing disk image.
add 9a45c1d Bump more KDE rootfs to fix failing disk image
No new revisions were added by this update.
Summary of changes:
fedora-arm-kde.ks | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch f33 updated (fae2af8 -> 73b5f6e)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch f33
in repository fedora-kickstarts.
from fae2af8 Detect arch for copying uboot on arm.
add 73b5f6e Bump KDE to fix failing disk image.
No new revisions were added by this update.
Summary of changes:
fedora-arm-kde.ks | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch master updated (d9ae4f7 -> 6669bac)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from d9ae4f7 Detect arch for copying uboot on arm.
add 6669bac drop rng-tools from arm-base and disk-base
No new revisions were added by this update.
Summary of changes:
fedora-arm-base.ks | 1 -
fedora-disk-base.ks | 1 -
2 files changed, 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months
[fedora-kickstarts] branch master updated (f249702 -> d9ae4f7)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from f249702 ELN: Install fedora-release-eln instead of fedora-release-container.
add d9ae4f7 Detect arch for copying uboot on arm.
No new revisions were added by this update.
Summary of changes:
fedora-disk-base.ks | 3 +++
fedora-modular-disk-minimal.ks | 3 +++
2 files changed, 6 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
2 years, 7 months