forked from codic12/EndeavourOS-calamares
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
### Documentation on why we are using this modified versions will follow here: | ||
|
||
|
||
1. copy_kernel | ||
1. **copy_kernel:** *unused* now a shellprocess: [shellprocess_ck.conf](https://github.com/endeavouros-team/EndeavourOS-calamares/blob/main/calamares/modules/shellprocess_ck.conf) | ||
|
||
2. **eos_script:** | ||
This module is unique to EndeavourOS, and used to integrate the scripts we need to create EndeavourOS and mainly Archlinux specific configurations. | ||
2. **eos_script:** This module is unique to EndeavourOS, and used to integrate the scripts we need to create EndeavourOS and mainly Archlinux specific configurations. | ||
|
||
3. **fstab** and ***mount**: | ||
We use the fstab and mount modules from Calamares 3.3. There are a couple of big advantages: | ||
3. **fstab** and ***mount:** We use the fstab and mount modules from Calamares 3.3. There are a couple of big advantages: | ||
* Mount options are now set prior to installation so things like compression are applied to the install itself | ||
* You can now have separate options for both SSDs and HDDs | ||
|
||
Mount options are now set prior to installation so things like compression are applied to the install itself | ||
You can now have separate options for both SSDs and HDDs | ||
5. **packages:** We are using a custom version of the packages module to provide feedback to the user during the package installation process | ||
|
||
5. packages | ||
6. **pacstrap:** This module is unique to EndeavourOS, and the pure online install method to be close to arch we are using pacstrap for the initial system creation. | ||
|
||
6. **pacstrap:** | ||
This module is uniowue to EndeavourOS, and the pure online install method to be close to arch we are using pacstrap for the initial system creation. | ||
|
||
7. **userpkglist:** | ||
This module is unique to EndeavourOS, and used on the implementation for users to add a list of packages that will get installed in addition to the system on install process. | ||
7. **userpkglist:** This module is unique to EndeavourOS, and used on the implementation for users to add a list of packages that will get installed in addition to the system on install process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
Main() | ||
{ | ||
# Create endeavouros-mirrorlist.offline for offline install. | ||
# Prefer mirrors that work well worldwide. | ||
# | ||
# Assumptions: | ||
# - official /etc/pacman.d/endeavouros-mirrorlist exists | ||
# - the format of country comments is static and unique, e.g.: | ||
# ## Germany | ||
|
||
local suffix=".offline-install" | ||
local mirrorlist="/etc/pacman.d/endeavouros-mirrorlist" | ||
local offline="$mirrorlist$suffix" | ||
|
||
printf "# EndeavourOS mirrorlist for offline install only.\n\n" > $offline | ||
cat "$mirrorlist" | sed -n '/^## Germany/,/^$/p' >> "$offline" | ||
cat "$mirrorlist" | sed -n '/^## [A-Z].*/,$p' >> "$offline" | ||
} | ||
|
||
Main "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters