Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
L
live-installer
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
SulinOS
live-installer
Commits
2df292be
Kaydet (Commit)
2df292be
authored
Haz 12, 2020
tarafından
sulincix
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
denencek
üst
fde3bf7f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
0 deletions
+12
-0
dialogs.cpython-37.pyc
live-installer/__pycache__/dialogs.cpython-37.pyc
+0
-0
installer.cpython-37.pyc
live-installer/__pycache__/installer.cpython-37.pyc
+0
-0
partitioning.cpython-37.pyc
live-installer/__pycache__/partitioning.cpython-37.pyc
+0
-0
timezones.cpython-37.pyc
live-installer/__pycache__/timezones.cpython-37.pyc
+0
-0
utils.cpython-37.pyc
live-installer/__pycache__/utils.cpython-37.pyc
+0
-0
gtk_interface.cpython-37.pyc
...staller/frontend/__pycache__/gtk_interface.cpython-37.pyc
+0
-0
installer.py
live-installer/installer.py
+12
-0
No files found.
live-installer/__pycache__/dialogs.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/__pycache__/installer.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/__pycache__/partitioning.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/__pycache__/timezones.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/__pycache__/utils.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/frontend/__pycache__/gtk_interface.cpython-37.pyc
deleted
100644 → 0
Dosyayı görüntüle @
fde3bf7f
File deleted
live-installer/installer.py
Dosyayı görüntüle @
2df292be
...
...
@@ -429,8 +429,11 @@ class InstallerEngine:
os
.
system
(
"echo
\"
LC_COLLATE=C
\"
> /target/etc/env.d/02locale"
)
os
.
system
(
"echo
\"
LC_ALL=
%
s.UTF-8
\"
>> /target/etc/env.d/02locale"
%
self
.
setup
.
language
)
self
.
update_progress
(
our_current
,
our_total
,
False
,
False
,
(
"Updating environment"
))
os
.
system
(
"echo
\"
LANG=
%
s.UTF-8
\"
>> /target/etc/env.d/02locale"
%
self
.
setup
.
language
)
self
.
do_run_in_chroot
(
'cat /etc/env.d/* | grep -v "^#" > /etc/environment'
)
# set the timezone
print
(
" --> Setting the timezone"
)
...
...
@@ -453,6 +456,9 @@ class InstallerEngine:
newconsolefh
.
write
(
"keymap=
\"
{}{}
\"\n
"
.
format
(
self
.
setup
.
keyboard_layout
,
self
.
setup
.
keyboard_variant
))
newconsolefh
.
close
()
#Keyboard settings X11
self
.
update_progress
(
our_current
,
our_total
,
False
,
False
,
(
"Settings X11 keyboard options"
))
newconsolefh
=
open
(
"/etc/X11/xorg.conf.d/00-keyboard.conf"
,
"w"
)
newconsolefh
.
write
(
'Section "InputClass"'
)
newconsolefh
.
write
(
'Identifier "system-keyboard"'
)
...
...
@@ -473,6 +479,9 @@ class InstallerEngine:
print
(
" --> Running grub-install"
)
self
.
do_run_in_chroot
(
"grub-install --force
%
s"
%
self
.
setup
.
grub_device
)
self
.
update_progress
(
our_current
,
our_total
,
False
,
False
,
(
"Configuring bootloader"
))
# fix not add windows grub entry
self
.
do_run_in_chroot
(
"update-grub"
)
self
.
do_configure_grub
(
our_total
,
our_current
)
...
...
@@ -488,6 +497,9 @@ class InstallerEngine:
# now unmount it
print
(
" --> Unmounting partitions"
)
self
.
update_progress
(
our_current
,
our_total
,
False
,
False
,
(
"Unmounting Partitions"
))
os
.
system
(
"umount --force /target/dev/shm"
)
os
.
system
(
"umount --force /target/dev/pts"
)
if
self
.
setup
.
gptonefi
:
...
...
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