~mwhudson/curtin:dasd-fba

Last commit made on 2020-11-04
Get this branch:
git clone -b dasd-fba https://git.launchpad.net/~mwhudson/curtin
Only Michael Hudson-Doyle can upload to this branch. If you are Michael Hudson-Doyle please log in for upload directions.

Branch merges

Branch information

Name:
dasd-fba
Repository:
lp:~mwhudson/curtin

Recent commits

d89558b... by Michael Hudson-Doyle

format FBA disks in disk_handler

4306491... by Michael Hudson-Doyle

make _parse_dasdview a bit more sensible

8ae0808... by Michael Hudson-Doyle

ignore ID_PART_TABLE_TYPE for dasds in storage_config

3123345... by Michael Hudson-Doyle

handle FBA dasds using the regular msdos path in partition_handler

833262e... by James Falcon

very much WIP

1f5755c... by Dan Watkins

vmtests: remove skip_by_dates for now-fixed bcache issue

59ea037... by Paride Legovini

debian/rules: drop PKG_VERSION and UPSTREAM_VERSION

The PKG_VERSION variable in debian/rules is not used and the command
generating it doesn't work, causing a 'Bad substitution' error at
every build. (The problem is with the '\#\#' escape.)

Also drop UPSTREAM_VERSION (unused).

392c05d... by Paride Legovini

deb packaging: fully cleanup directory tree after build

LP: #1899698

3727577... by Sergey Bykov

udevadm_info should use maxsplit=1 instead of maxsplit=2

In udevadm_info the below code is called to split output lines:
    key, value = line.split('=', 2)

It can lead to unhandled exception if there are more than one
equal sign in the string as split will return array of three
or more elements. The correct way to get only two elements is
to use maxsplit=1:
    key, value = line.split('=', 1)

LP: #1895021

c696c8d... by Ryan Harper

vmtests/multipath-lvm: dont assume device-mapper block names

- Add comments in the early_command code to document what it is doing
- Use the /device/mapper/mpatha symlink to determine the correct
  device-mapper device name when operating on it
- Add additional commands to capture more information for future
  debugging issues with these tests.

LP: #1898758