mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-02-10 04:47:27 +00:00
Summary: This resolves T107 Refactor automirror Add donate button url and geoip to welcome Adjust locale.conf geoip format Set default filesystem type and no user swap choices Add defaults to settings to eliminate warnings Add efi mount options to fstab.conf Set restart mode in finished.conf to new style Set bootloader entry name to Ubuntu and slideshowAPI to 1 Test Plan: Test Calamares installation for proper location detection. Test Calamares installation for proper efi mount. Test Calamares installation for proper bootloader entry. Reviewers: tsimonq2, wxl, apt-ghetto Reviewed By: tsimonq2, wxl Subscribers: apt-ghetto Maniphest Tasks: T107 Differential Revision: https://phab.lubuntu.me/D33
15 lines
658 B
Makefile
Executable File
15 lines
658 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_missing:
|
|
dh_missing
|
|
mkdir -pv debian/calamares-settings-ubuntu-common/usr/lib/$(DEB_HOST_MULTIARCH)/calamares/modules
|
|
cp -vr common/modules/* debian/calamares-settings-ubuntu-common/usr/lib/$(DEB_HOST_MULTIARCH)/calamares/modules
|
|
chmod -R 755 debian/calamares-settings-ubuntu-common/usr/lib/
|
|
chmod 644 debian/calamares-settings-ubuntu-common/usr/lib/$(DEB_HOST_MULTIARCH)/calamares/modules/automirror/automirror.conf
|
|
chmod 644 debian/calamares-settings-ubuntu-common/usr/lib/$(DEB_HOST_MULTIARCH)/calamares/modules/automirror/module.desc
|