diff -u goget-ubuntu-touch-0.23/debian/changelog goget-ubuntu-touch-0.23/debian/changelog
--- goget-ubuntu-touch-0.23/debian/changelog
+++ goget-ubuntu-touch-0.23/debian/changelog
@@ -1,3 +1,9 @@
+goget-ubuntu-touch (0.23-0ubuntu3) wily; urgency=low
+
+ * add --seb-channel param
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 12 Jun 2015 08:37:58 +0200
+
goget-ubuntu-touch (0.23-0ubuntu2) wily; urgency=medium
* No change rebuild for latest ubuntu-snappy
only in patch2:
unchanged:
--- goget-ubuntu-touch-0.23.orig/diskimage/core_grub.go
+++ goget-ubuntu-touch-0.23/diskimage/core_grub.go
@@ -113,8 +113,8 @@
parted.addPart(grubLabel, "", fsNone, 4)
parted.addPart(bootLabel, bootDir, fsFat32, 64)
- parted.addPart(systemALabel, systemADir, fsExt4, 1024)
- parted.addPart(systemBLabel, systemBDir, fsExt4, 1024)
+ parted.addPart(systemALabel, systemADir, fsExt4, 4096)
+ parted.addPart(systemBLabel, systemBDir, fsExt4, 4096)
parted.addPart(writableLabel, writableDir, fsExt4, -1)
parted.setBoot(2)
only in patch2:
unchanged:
--- goget-ubuntu-touch-0.23.orig/ubuntu-device-flash/core.go
+++ goget-ubuntu-touch-0.23/ubuntu-device-flash/core.go
@@ -136,7 +136,13 @@
return err
}
- channel := systemImageChannel("ubuntu-core", coreCmd.Positional.Release, coreCmd.Channel)
+ ubuntuCore := os.Getenv("UDF_UBUNTU_CORE_NAME")
+ println(ubuntuCore)
+ if ubuntuCore == "" {
+ ubuntuCore = "ubuntu-core"
+ }
+ channel := systemImageChannel(ubuntuCore, coreCmd.Positional.Release, coreCmd.Channel)
+
// TODO: remove once azure channel is gone
var device string
if coreCmd.Deprecated.Device != "" {