diff options
| author | ciarancourtney <ciaran.courtney@activeenergy.ie> | 2022-10-28 13:30:50 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-29 16:28:36 +0100 |
| commit | d2a483338f682ab0abf7b1246994db5db26ff1fb (patch) | |
| tree | 6783eee013be80acce4c8def3cb25ff1e6ef514f /scripts/lib | |
| parent | 05de18eae7217f8a75922538eac6933a11634afa (diff) | |
| download | poky-d2a483338f682ab0abf7b1246994db5db26ff1fb.tar.gz | |
wic: swap partitions are not added to fstab
- Regression in 7aa678ce804c21dc1dc51b9be442671bc33c4041
(From OE-Core rev: f1243572ad6b6303fe562e4eb7a9826fd51ea3c3)
Signed-off-by: Ciaran Courtney <ciaran.courtney@activeenergy.ie>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
| -rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index 58965b75da..dfaa901567 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py | |||
| @@ -117,7 +117,7 @@ class DirectPlugin(ImagerPlugin): | |||
| 117 | updated = False | 117 | updated = False |
| 118 | for part in self.parts: | 118 | for part in self.parts: |
| 119 | if not part.realnum or not part.mountpoint \ | 119 | if not part.realnum or not part.mountpoint \ |
| 120 | or part.mountpoint == "/" or not part.mountpoint.startswith('/'): | 120 | or part.mountpoint == "/" or not (part.mountpoint.startswith('/') or part.mountpoint == "swap"): |
| 121 | continue | 121 | continue |
| 122 | 122 | ||
| 123 | if part.use_uuid: | 123 | if part.use_uuid: |
