x86: update profile names

This commit is contained in:
David Bauer 2020-04-06 12:36:17 +02:00
parent 0bfa4417dd
commit 2acc7f1bae
5 changed files with 28 additions and 21 deletions

View File

@ -1,6 +1,9 @@
include 'x86.inc'
factory_image('x86-64', 'combined-squashfs', '.img.gz')
factory_image('x86-64', 'combined-squashfs', '.vdi')
factory_image('x86-64', 'combined-squashfs', '.vmdk')
sysupgrade_image('x86-64', 'combined-squashfs', '.img.gz')
packages {
'kmod-gpio-nct5104d',
'kmod-leds-gpio',
'kmod-leds-apu2',
}
device('x86-64', 'generic')

View File

@ -1,9 +1,12 @@
include 'x86.inc'
factory_image('x86-generic', 'combined-squashfs', '.img.gz')
factory_image('x86-generic', 'combined-squashfs', '.vdi')
factory_image('x86-generic', 'combined-squashfs', '.vmdk')
sysupgrade_image('x86-generic', 'combined-squashfs', '.img.gz', {
packages {
'kmod-gpio-nct5104d',
'kmod-leds-gpio',
'kmod-leds-apu2',
}
device('x86-generic', 'generic', {
manifest_aliases = {
'x86-kvm',
'x86-xen_domu',

View File

@ -18,5 +18,9 @@ packages {
'kmod-via-velocity',
}
factory_image('x86-geode', 'combined-squashfs', '.img.gz')
sysupgrade_image('x86-geode', 'combined-squashfs', '.img.gz')
device('x86-geode', 'generic', {
factory = '-squashfs-combined',
factory_ext = '.img.gz',
sysupgrade = '-squashfs-combined',
sysupgrade_ext = '.img.gz',
})

View File

@ -1,10 +1,3 @@
include 'x86.inc'
packages {
'-kmod-gpio-nct5104d',
'-kmod-leds-gpio',
'-kmod-leds-apu2',
}
factory_image('x86-legacy', 'combined-squashfs', '.img.gz')
sysupgrade_image('x86-legacy', 'combined-squashfs', '.img.gz')
device('x86-legacy', 'generic')

View File

@ -22,10 +22,7 @@ packages {
'kmod-via-velocity',
'kmod-ath9k',
'kmod-gpio-button-hotplug',
'kmod-gpio-nct5104d',
'kmod-hwmon-core',
'kmod-leds-gpio',
'kmod-leds-apu2',
'kmod-sp5100_tco',
'kmod-usb-core',
'kmod-usb-ohci',
@ -42,3 +39,10 @@ packages {
'kmod-mt7603',
'kmod-mt7615e',
}
defaults {
factory = '-squashfs-combined',
factory_ext = {'.img.gz', '.vmdk', '.vdi'},
sysupgrade = '-squashfs-combined',
sysupgrade_ext = '.img.gz',
}