Home
last modified time | relevance | path

Searched full:release (Results 1 – 25 of 3469) sorted by relevance

12345678910>>...139

/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-4.0.rst3 Release 4.0 (kirkstone)
9 release-notes-4.0
10 release-notes-4.0.1
11 release-notes-4.0.2
12 release-notes-4.0.3
13 release-notes-4.0.4
14 release-notes-4.0.5
15 release-notes-4.0.6
16 release-notes-4.0.7
17 release-notes-4.0.8
[all …]
H A Dindex.rst4 Release Information
9 Each document in this chapter provides release notes and information about how
10 to move to one release of the Yocto Project from the previous one.
15 release-5.3
16 release-5.2
17 release-5.1
18 release-5.0
19 release-4.3
20 release-4.2
21 release-4.1
[all …]
H A Drelease-5.0.rst3 Release 5.0 (scarthgap)
9 release-notes-5.0
10 release-notes-5.0.1
11 release-notes-5.0.2
12 release-notes-5.0.3
13 release-notes-5.0.4
14 release-notes-5.0.5
15 release-notes-5.0.6
16 release-notes-5.0.7
17 release-notes-5.0.8
[all …]
H A Drelease-4.3.rst3 Release 4.3 (nanbield)
9 release-notes-4.3
10 release-notes-4.3.1
11 release-notes-4.3.2
12 release-notes-4.3.3
13 release-notes-4.3.4
H A Drelease-3.4.rst3 Release 3.4 (honister)
9 release-notes-3.4
10 release-notes-3.4.1
11 release-notes-3.4.2
12 release-notes-3.4.3
13 release-notes-3.4.4
/openbmc/linux/drivers/gpu/drm/qxl/
Dqxl_release.c
Dqxl_draw.c
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/fixtures/
H A Dgen_fixtures.py10 # Edit the 'current_releases' table for each new release cycle
35 # [Codename, Yocto Project Version, Release Date, Current Version, Support Level, Poky Version, Bit…
37 # Release slot #1
39 # Release slot #2 'local'
41 # Release slot #3 'master'
43 # Release slot #4
80 #<!-- Bitbake versions which correspond to the metadata release -->')
99 <object model="orm.release" pk="{{ra_count}}">
103 <field type="CharField" name="branch_name">{{release}}</field>
108 # <!-- Default project layers for each release -->
[all …]
H A Dpoky.xml9 <!-- Bitbake versions which correspond to the metadata release -->
55 <object model="orm.release" pk="1">
62 <object model="orm.release" pk="2">
69 <object model="orm.release" pk="3">
76 <object model="orm.release" pk="4">
83 <object model="orm.release" pk="5">
90 <object model="orm.release" pk="6">
97 <object model="orm.release" pk="7">
105 <!-- Default project layers for each release -->
107 <field rel="ManyToOneRel" to="orm.release" name="release">1</field>
[all …]
H A Doe-core.xml9 <!-- Bitbake versions which correspond to the metadata release -->
47 <object model="orm.release" pk="1">
54 <object model="orm.release" pk="2">
61 <object model="orm.release" pk="3">
68 <object model="orm.release" pk="4">
75 <object model="orm.release" pk="5">
82 <object model="orm.release" pk="6">
89 <object model="orm.release" pk="7">
97 <!-- Default layers for each release -->
99 <field rel="ManyToOneRel" to="orm.release" name="release">1</field>
[all …]
/openbmc/openbmc/meta-security/dynamic-layers/meta-perl/recipes-security/bastille/files/
H A Dorganize_distro_discovery.patch45 my ($release,$distro);
50 - if ( -e "/etc/mandrake-release" ) {
51 - open(MANDRAKE_RELEASE,"/etc/mandrake-release");
52 - $release=<MANDRAKE_RELEASE>;
54 - if ( ($release =~ /^Mandrake Linux release (\d+\.\d+\w*)/) or ($release =~ /^Linux Mandrake r…
57 - elsif ( $release =~ /^Mandrakelinux release (\d+\.\d+)\b/ ) {
67 - elsif ( -e "/etc/immunix-release" ) {
68 - open(IMMUNIX_RELEASE,"/etc/immunix-release");
69 - $release=<IMMUNIX_RELEASE>;
70 - unless ($release =~ /^Immunix Linux release (\d+\.\d+\w*)/) {
[all …]
/openbmc/openbmc/meta-yadro/recipes-core/os-release/
H A Dos-release.bbappend5 # release/nicole/v1
10 # Release branches (release/<machine>/vX) are expected to be forked off
12 # <machine>-vX.Y[-rcZ|-dev*]. All release branches without machine tags,
13 # as well as any non-release branches produce 'Unofficial' builds.
14 # So do the release branches with -rc or -dev suffix in the latest tag.
60 # For release branches:
61 if 'release' == branch_type:
70 # Prevent zero patch level. Zero patch level is an official release.
74 # Any build from a release/<product>/* branch without a <product>-* tag
75 # is not an official release
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dlsb.py8 """Get all key-value pairs from /etc/os-release as a dict"""
12 if os.path.exists('/etc/os-release'):
13 with open('/etc/os-release') as f:
23 """ Populate a dict with pertinent values from /etc/os-release """
43 'Release': 'DISTRIB_RELEASE'}
63 """ Try to gather release information manually when other methods fail """
66 if os.path.exists('/etc/lsb-release'):
68 with open('/etc/lsb-release') as f:
72 elif os.path.exists('/etc/redhat-release'):
74 with open('/etc/redhat-release') as f:
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/migrations/
H A D0012_use_release_instead_of_up_branch.py10 Release = apps.get_model('orm', 'Release')
14 # the release that they're for.
16 Q(release=None) & ~Q(up_branch=None)):
20 release = Release.objects.get(name="local")
24 release = Release.objects.get(
27 layer_version.release = release
30 print("Couldn't work out an appropriate release for %s "
48 name='release',
49 … field=models.ForeignKey(to='orm.Release', default=None, null=True, on_delete=models.CASCADE),
/openbmc/openbmc/poky/documentation/ref-manual/
H A Drelease-process.rst4 Yocto Project Releases and the Stable Release Process
7 The Yocto Project release process is predictable and consists of both
12 Major and Minor Release Cadence
18 also shown. See the ":ref:`ref-manual/release-process:major release codenames`"
32 fixes or enhancements to the associated major release.
39 The point release
40 indicates a point in the major release branch where a full QA cycle and
41 release process validates the content of the new branch.
45 Realize that there can be patches merged onto the stable release
48 Major Release Codenames
[all …]
/openbmc/openbmc/meta-arm/meta-arm-bsp/documentation/corstone1000/
H A Drelease-notes.rst7 Release notes
23 Release notes - 2024.11
26 The same notes as the 2024.06 release still apply.
29 Release notes - 2024.06
38 - See previous release notes for the known limitations regarding ACS tests.
42 - This software release is tested on Corstone-1000 FPGA version AN550_v2
44 - This software release is tested on Corstone-1000 Fast Model platform (FVP) version 11.23_25
50 As of this release, Corstone-1000 has achieved `SystemReady IR v2.0 certification <https://www.arm.…
55 …g/?h=CORSTONE1000-2024.06-systemready-ir-v2.0>`__ and builds on the `CORSTONE1000-2024.06` release.
58 Release notes - 2023.11
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/unattended-upgrades/files/
H A D0001-unattended-upgrade-Remove-distro_info-usage-to-check.patch10 The distro-info python3 package is used to check if the release is a
11 devel release and choice if continue with unattended-upgrade for now
41 - # check to see if want to auto-upgrade the devel release
54 - logging.warning("Could not figure out development release: %s" % e)
57 - and devel.release is not None
58 - and devel.release - date.today() > DEVEL_UNTIL_RELEASE)):
60 - "release before %s") %
61 - (devel.release - DEVEL_UNTIL_RELEASE
64 - "release before %s") %
65 - (devel.release - DEVEL_UNTIL_RELEASE
[all …]
/openbmc/openbmc/poky/meta/recipes-core/os-release/
H A Dos-release.bb4 DESCRIPTION = "The /usr/lib/os-release file contains operating system identification data."
5 HOMEPAGE = "https://www.freedesktop.org/software/systemd/man/os-release.html"
14 # See: https://www.freedesktop.org/software/systemd/man/os-release.html
47 # unquoted fields like VERSION_ID should be (from os-release(5)):
54 with open(d.expand('${B}/os-release'), 'w') as f:
69 install -m 0644 os-release ${D}${nonarch_libdir}/
70 ln -rs ${D}${nonarch_libdir}/os-release ${D}${sysconfdir}/os-release
71 ln -rs ${D}${nonarch_libdir}/os-release ${D}${sysconfdir}/initrd-release
74 FILES:${PN} = "${sysconfdir}/os-release ${nonarch_libdir}/os-release"
77 FILES:${PN}-initrd = "${sysconfdir}/initrd-release"
/openbmc/openbmc/poky/documentation/test-manual/
H A Dtest-process.rst4 Project Testing and Release Process
54 Release Builds
62 The build and release process for these project releases is similar to
66 version, release candidate number and other information is entered. The
71 repository to the list of people configured for that release. Release builds
74 more manual and control is effectively passed to release engineering.
84 - Release engineering prepare the release as per their process.
86 - Test results from the QA teams are included into the release in
91 - The QA report in the final release is regenerated using resulttool to
95 - The release is checked against the release checklist and release
[all …]
/openbmc/u-boot/drivers/core/
H A Ddevres.c21 * @release: Callback invoked when this resource is released
24 * @name: Name of release function
30 dr_release_t release; member
58 void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp, in __devres_alloc() argument
61 void *_devres_alloc(dr_release_t release, size_t size, gfp_t gfp) in __devres_alloc()
72 dr->release = release; in __devres_alloc()
98 void *devres_find(struct udevice *dev, dr_release_t release, in devres_find() argument
104 if (dr->release != release) in devres_find()
120 res = devres_find(dev, new_dr->release, match, match_data); in devres_get()
131 void *devres_remove(struct udevice *dev, dr_release_t release, in devres_remove() argument
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_create_new_project.py21 - Release: Yocto Project master (option value: 3)
24 release = '3'
29 release,
37 - Release: Yocto Project 5.0 "Scarthgap" (option value: 1)
40 release = '1'
45 release,
53 - Release: Yocto Project 4.0 "Kirkstone" (option value: 6)
56 release = '7'
61 release,
69 - Release: Local Yocto Project (option value: 2)
[all …]
/openbmc/linux/arch/arm/boot/dts/intel/axm/
Daxm5516-cpus.dtsi
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dgcc-15.1.inc3 # Third digit in PV should be incremented after a minor release
7 # BINV should be incremented to a revision after a minor gcc release
28 #RELEASE ?= "9b6bf076c11cba0f9ccdace63e8b4044b1a858ea"
29 #BASEURI ?= "https://git.linaro.org/toolchain/gcc.git/snapshot/gcc-${RELEASE}.tar.gz"
30 #SOURCEDIR = "gcc-${RELEASE}"
31 …= "https://repo.or.cz/official-gcc.git/snapshot/${RELEASE}.tar.gz;downloadfilename=gcc-${PV}-${REL…
32 #SOURCEDIR ?= "official-gcc-${@'${RELEASE}'[0:7]}"
36 #RELEASE ?= "15-20250420"
37 #RELEASE ?= "15.1.0-RC-20250418"
38 #BASEURI ?= "https://gcc.gnu.org/pub/gcc/snapshots/${RELEASE}/gcc-${RELEASE}.tar.xz"
[all …]
/openbmc/libpldm/docs/checklists/
H A Dreleases.md9 - [ ] Generate the ABI dump for the release
20 - [ ] Remove headers of empty sections from current release
26 - [ ] Commit the changes above with the subject `libpldm: Release <version>`
27 - [ ] Push the release commit for review in Gerrit
28 - [ ] Submit the release commit once approved
29 - [ ] Create the release tag
30 - [ ] Push the release tag
/openbmc/openbmc/meta-arm/documentation/
H A Dreleases.md2 ## **Release and Branching background**
3 …a "named" branch consistent with the code name of that release. For example, the “dunfell” release
5release a snapshot of the relevant “master” branches under active development, due to the amount o…
12 …atch (or series against the intended LTS branch) and send email with the release name in the subje…
20 …hes for meta-arm will be released as close as possible to the release of the YP LTS release. Meta-…
24 …ed branch release will coincide with Yocto Project releases. These non-LTS branches will be bug fi…
27 When YP is approaching release, meta-arm will attempt to stabilize master so that the releases can …
30 * T-0 - Official upstream release occurs. With no outstanding critical bugs, a new named branch is …
36 Conciding with the Yocto Project release schedule, every branch which has one or more changes added…
38 ### **BSP Release Tagging**
[all …]

12345678910>>...139