From 5538b684df983ce0687d05da8b23a76467d9ca89 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Thu, 26 Jan 2017 12:12:11 +1300 Subject: [PATCH 1/2] hide raid/LVM/bcache setup screens for now --- subiquity/ui/views/filesystem/filesystem.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subiquity/ui/views/filesystem/filesystem.py b/subiquity/ui/views/filesystem/filesystem.py index 1c1425d8..1a8e5b36 100644 --- a/subiquity/ui/views/filesystem/filesystem.py +++ b/subiquity/ui/views/filesystem/filesystem.py @@ -177,9 +177,9 @@ class FilesystemView(BaseView): fs_menu = [ # ('Connect iSCSI network disk', 'filesystem:connect-iscsi-disk'), # ('Connect Ceph network disk', 'filesystem:connect-ceph-disk'), - ('Create volume group (LVM2)', 'menu:filesystem:main:create-volume-group'), - ('Create software RAID (MD)', 'menu:filesystem:main:create-raid'), - ('Setup hierarchichal storage (bcache)', 'menu:filesystem:main:setup-bcache'), + # ('Create volume group (LVM2)', 'menu:filesystem:main:create-volume-group'), + # ('Create software RAID (MD)', 'menu:filesystem:main:create-raid'), + # ('Setup hierarchichal storage (bcache)', 'menu:filesystem:main:setup-bcache'), ] for opt, sig in fs_menu: From bc9606ea7c06511abcde66508e16b57a43f32ef6 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Thu, 26 Jan 2017 14:54:01 +1300 Subject: [PATCH 2/2] changelog entries for recent work --- debian/changelog | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/debian/changelog b/debian/changelog index 42eeb132..1c7e10b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,19 @@ subiquity (0.0.27) UNRELEASED; urgency=medium * Fix header of WIFI config screen (LP: #1651119) * Fix partion size rounding to correctly round to 1M boundaries, not 1G. * Improve widget used to select filesystem type. (LP: #1654387) + * Add flag to geninstaller to install local subiquity. (LP: #1654386) + * Do not say a netdev is not configured when there is no configuration. (LP: + #1654381) + * Make a cleaner separation between console-conf and subiquity code. + * Remove lots of unused code. + * Make installprogress controller (the code that drives curtin) more event + driven, removing polling and the dependency on python3-tornado. + * Make the curtin log viewer much more intuitive. (LP: #1654390) + * Rearrange subiquity's systemd units to allow running a root shell for + debugging on tty's other than tty1. (LP: #1654085) + * Do not create an ubuntu user in the installer or in the installed system. + (LP: #1659170) + * Recommend some common mount points when creating a partition. -- Michael Hudson-Doyle Mon, 09 Jan 2017 21:59:32 +1300