Imported using git-ubuntu import.
Changelog parent: aca40d6ebf
New changelog entries:
[ Michael Vogt ]
* update kernel snap building to match the new kernel policy
* system-image: add /usr/local/bin/xdg-open dbus helper
[ Oliver Grawert ]
* add u-boot-tools to all snappy arches
* drop flash-kernel from snappy, it is useless there
* create /boot/uboot dir on all arches and configure /etc/fw_env.config
everywhere
* adjust motd message on snappy (capitalize "Snappy Ubuntu Core" and replace
the "snappy --help" with "snap --help"
[ Adam Conrad ]
* Stop explicitly removing systemd-sysv for touch.
* Move touch resolution hints to a HINTS variable, and adjust for use
on dual-stack gl/gles arches where things don't quite work right.
impish
parent
aca40d6ebf
commit
7570a3c606
@ -1,12 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
cat >/etc/motd<<EOF
|
||||
Welcome to snappy Ubuntu Core, a transactionally updated Ubuntu.
|
||||
Welcome to Snappy Ubuntu Core, a transactionally updated Ubuntu.
|
||||
|
||||
* See https://ubuntu.com/snappy
|
||||
|
||||
It's a brave new world here in snappy Ubuntu Core! This machine
|
||||
does not use apt-get or deb packages. Please see 'snappy --help'
|
||||
It's a brave new world here in Snappy Ubuntu Core! This machine
|
||||
does not use apt-get or deb packages. Please see 'snap --help'
|
||||
for app installation and transactional updates.
|
||||
|
||||
EOF
|
||||
|
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
echo "I: Creating xdg helper"
|
||||
|
||||
PREFIX=binary/boot/filesystem.dir
|
||||
|
||||
mkdir -p $PREFIX/usr/local/bin
|
||||
cat >$PREFIX/usr/local/bin/xdg-open <<EOF
|
||||
#!/bin/sh
|
||||
cat <<'EOF'
|
||||
dbus-send --print-reply --session --dest=com.canonical.SafeLauncher / com.canonical.SafeLauncher.OpenURL string:"$1"
|
||||
EOF
|
||||
chmod 755 $PREFIX/usr/local/bin/xdg-open
|
||||
|
Loading…
Reference in new issue