Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominika Liberda
aports
Commits
21c35028
Commit
21c35028
authored
7 years ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
scripts/mkimg.*: add title and description
parent
3bc59080
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
scripts/mkimg.arm.sh
+8
-0
8 additions, 0 deletions
scripts/mkimg.arm.sh
scripts/mkimg.minirootfs.sh
+4
-0
4 additions, 0 deletions
scripts/mkimg.minirootfs.sh
scripts/mkimg.standard.sh
+16
-0
16 additions, 0 deletions
scripts/mkimg.standard.sh
scripts/mkimg.xen.sh
+4
-0
4 additions, 0 deletions
scripts/mkimg.xen.sh
with
32 additions
and
0 deletions
scripts/mkimg.arm.sh
+
8
−
0
View file @
21c35028
...
@@ -46,6 +46,10 @@ section_rpi_config() {
...
@@ -46,6 +46,10 @@ section_rpi_config() {
profile_rpi
()
{
profile_rpi
()
{
profile_base
profile_base
title
=
"Raspberry Pi"
desc
=
"Includes Raspberry Pi kernel.
Does not include grsec patchset.
And much more..."
image_ext
=
"tar.gz"
image_ext
=
"tar.gz"
arch
=
"armhf"
arch
=
"armhf"
rpi_firmware_commit
=
"debe2d29bbc3df84f74672fae47f3a52fd0d40f1"
rpi_firmware_commit
=
"debe2d29bbc3df84f74672fae47f3a52fd0d40f1"
...
@@ -76,6 +80,10 @@ section_uboot() {
...
@@ -76,6 +80,10 @@ section_uboot() {
profile_uboot
()
{
profile_uboot
()
{
profile_base
profile_base
title
=
"Generic ARM"
desc
=
"Has default ARM kernel.
Includes the uboot bootloader.
Supports armhf and aarch64."
image_ext
=
"tar.gz"
image_ext
=
"tar.gz"
arch
=
"aarch64 armhf armv7"
arch
=
"aarch64 armhf armv7"
case
"
$ARCH
"
in
case
"
$ARCH
"
in
...
...
This diff is collapsed.
Click to expand it.
scripts/mkimg.minirootfs.sh
+
4
−
0
View file @
21c35028
...
@@ -14,6 +14,10 @@ create_image_rootfs() {
...
@@ -14,6 +14,10 @@ create_image_rootfs() {
}
}
profile_minirootfs
()
{
profile_minirootfs
()
{
title
=
"Mini root filesystem"
desc
=
"Minimal root filesystem.
For use in containers
and minimal chroots."
image_ext
=
tar.gz
image_ext
=
tar.gz
output_format
=
rootfs
output_format
=
rootfs
arch
=
"x86 x86_64 armhf aarch64 ppc64le s390x"
arch
=
"x86 x86_64 armhf aarch64 ppc64le s390x"
...
...
This diff is collapsed.
Click to expand it.
scripts/mkimg.standard.sh
+
16
−
0
View file @
21c35028
profile_standard
()
{
profile_standard
()
{
title
=
"Standard"
desc
=
"Alpine as it was intended.
Just enough to get you started.
Network connection is required."
profile_base
profile_base
image_ext
=
"iso"
image_ext
=
"iso"
arch
=
"x86 x86_64"
arch
=
"x86 x86_64"
...
@@ -9,6 +13,10 @@ profile_standard() {
...
@@ -9,6 +13,10 @@ profile_standard() {
profile_vanilla
()
{
profile_vanilla
()
{
profile_standard
profile_standard
title
=
"Vanilla"
desc
=
"Includes a vanilla kernel.
Does not include grsec patch set.
Suitable for debugging."
#arch="$arch aarch64"
#arch="$arch aarch64"
arch
=
"
$arch
ppc64le"
arch
=
"
$arch
ppc64le"
kernel_flavors
=
"vanilla"
kernel_flavors
=
"vanilla"
...
@@ -17,6 +25,10 @@ profile_vanilla() {
...
@@ -17,6 +25,10 @@ profile_vanilla() {
profile_extended
()
{
profile_extended
()
{
profile_standard
profile_standard
title
=
"Extended"
desc
=
"Most common used packages included.
Suitable for routers and servers.
Runs from RAM."
kernel_addons
=
"dahdi-linux xtables-addons zfs spl"
kernel_addons
=
"dahdi-linux xtables-addons zfs spl"
apks
=
"
$apks
apks
=
"
$apks
dahdi-linux dahdi-tools ethtool hwdata lftp links
dahdi-linux dahdi-tools ethtool hwdata lftp links
...
@@ -53,6 +65,10 @@ profile_extended() {
...
@@ -53,6 +65,10 @@ profile_extended() {
profile_virt
()
{
profile_virt
()
{
profile_standard
profile_standard
title
=
"Virtual"
desc
=
"Similar to standard.
Slimmed down kernel.
Optimized for virtual systems."
kernel_addons
=
kernel_addons
=
kernel_flavors
=
"virthardened"
kernel_flavors
=
"virthardened"
kernel_cmdline
=
"console=tty0 console=ttyS0,115200"
kernel_cmdline
=
"console=tty0 console=ttyS0,115200"
...
...
This diff is collapsed.
Click to expand it.
scripts/mkimg.xen.sh
+
4
−
0
View file @
21c35028
...
@@ -9,6 +9,10 @@ section_xen() {
...
@@ -9,6 +9,10 @@ section_xen() {
profile_xen
()
{
profile_xen
()
{
profile_standard
profile_standard
title
=
"Xen"
desc
=
"Build-in support for Xen Hypervisor.
Includes packages targed at Xen usage.
Includes grsec kernel."
arch
=
"x86_64"
arch
=
"x86_64"
kernel_cmdline
=
"nomodeset"
kernel_cmdline
=
"nomodeset"
xen_params
=
""
xen_params
=
""
...
...
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