Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-system-image
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
reform-system-image
Commits
9394fd02
Commit
9394fd02
authored
3 years ago
by
minute
Browse files
Options
Downloads
Patches
Plain Diff
mkuserland: log commands, stop on errors
parent
946e169a
No related branches found
Branches containing commit
No related tags found
1 merge request
!25
MNT Reform System Image v2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
reform2-imx8mq/mkuserland.sh
+5
-0
5 additions, 0 deletions
reform2-imx8mq/mkuserland.sh
reform2-imx8mq/mkuserland3.sh
+10
-0
10 additions, 0 deletions
reform2-imx8mq/mkuserland3.sh
with
15 additions
and
0 deletions
reform2-imx8mq/mkuserland.sh
+
5
−
0
View file @
9394fd02
...
...
@@ -57,6 +57,9 @@ export LC_ALL=C
export LANGUAGE=C
export LANG=C
set -x
set -e
echo "root:root" | chpasswd
passwd -d root # remove root password
...
...
@@ -105,4 +108,6 @@ apt remove -y ofono foot apparmor
# disable built-in sleep targets in favor of reform-standby script
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
umount /proc
EOF
This diff is collapsed.
Click to expand it.
reform2-imx8mq/mkuserland3.sh
+
10
−
0
View file @
9394fd02
...
...
@@ -18,6 +18,14 @@ export LC_ALL=C
export LANGUAGE=C
export LANG=C
set -x
set -e
# mount /proc if it doesn't exist
if [[ ! -e /proc/version ]]; then
mount -t proc none /proc
fi
# install applications
apt install -y libreoffice libreoffice-gtk3 inkscape firefox-esr emacs gimp wmaker x11-utils
...
...
@@ -34,4 +42,6 @@ apt install -y --no-install-recommends gnome-control-center gnome-session
# remove apparmor (slows down boot)
apt remove -y apparmor
umount /proc
EOF
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment