---------- Forwarded message ----------
From: Lukas-David Gorris <lukas.gor...@googlemail.com>
Date: Mon, Mar 7, 2011 at 12:04 AM
Subject: Re: [PATCH] Add htcleo machine in fsogsmd
To: Denis 'GNUtoo' Carikli <gnu...@no-log.org>


On Sun, Mar 6, 2011 at 7:44 PM, Lukas-David Gorris
<lukas.gor...@googlemail.com> wrote:
> On Sun, Mar 6, 2011 at 7:25 PM, Lukas-David Gorris
> <lukas.gor...@googlemail.com> wrote:
>> [...]
>>>
>>> All the rest seem ok.
>>>
>>> Denis.
>>>
>>>
>>>
>>
>> Thanks for the review, here's the updated patch
>
> And another one, this time as attached file. Will be using git
> send-email next time. Sorry for the hassle.
>
> Best,
> Lukas
>

Thanks to GNUtoo the htcleo conf files were moved to their correct
paths in cornucopia.git commit
8ce04de1917e6854f06ead27129392c6027529e1 after above patch.
In the attached patch, the conf files are now added to the make system.

Best,
Lukas
From 4aeab02918adc0962fe6ca7223d51e509af735f1 Mon Sep 17 00:00:00 2001
From: Lukas-David Gorris <lukas.gor...@gmail.com>
Date: Sun, 6 Mar 2011 23:53:05 +0100
Subject: [PATCH] htcleo: add all configs in the make system

---
 fsodeviced/conf/Makefile.am            |    1 +
 fsodeviced/conf/htcleo/Makefile.am     |   17 +++++++++++++++++
 fsodeviced/conf/htcleo/fsodeviced.conf |    2 +-
 fsodeviced/configure.ac                |    1 +
 fsogsmd/conf/Makefile.am               |    1 +
 fsogsmd/conf/htcleo/Makefile.am        |   12 ++++++++++++
 fsogsmd/configure.ac                   |    1 +
 fsotdld/conf/Makefile.am               |    1 +
 fsotdld/conf/htcleo/Makefile.am        |   12 ++++++++++++
 fsotdld/configure.ac                   |    1 +
 fsousaged/conf/Makefile.am             |    1 +
 fsousaged/conf/htcleo/Makefile.am      |   12 ++++++++++++
 fsousaged/configure.ac                 |    1 +
 13 files changed, 62 insertions(+), 1 deletions(-)
 create mode 100644 fsodeviced/conf/htcleo/Makefile.am
 create mode 100644 fsogsmd/conf/htcleo/Makefile.am
 create mode 100644 fsotdld/conf/htcleo/Makefile.am
 create mode 100644 fsousaged/conf/htcleo/Makefile.am

diff --git a/fsodeviced/conf/Makefile.am b/fsodeviced/conf/Makefile.am
index 82a49e4..18cb391 100644
--- a/fsodeviced/conf/Makefile.am
+++ b/fsodeviced/conf/Makefile.am
@@ -6,6 +6,7 @@ SUBDIRS = \
 	default \
 	htc_qualcomm_dream \
 	htc_qualcomm_msm \
+	htcleo \
 	motorola_ezx \
 	nokia_n900 \
 	openmoko_gta \
diff --git a/fsodeviced/conf/htcleo/Makefile.am b/fsodeviced/conf/htcleo/Makefile.am
new file mode 100644
index 0000000..6a661aa
--- /dev/null
+++ b/fsodeviced/conf/htcleo/Makefile.am
@@ -0,0 +1,17 @@
+include $(top_srcdir)/Makefile.decl
+
+NULL=
+
+# SUBDIRS = alsa-default
+
+THISDIR = `basename $$PWD`
+
+confdir = $(sysconfdir)/freesmartphone/conf/$(THISDIR)
+dist_conf_DATA = \
+	fsodeviced.conf \
+	$(NULL)
+
+install-data-local:
+	$(mkinstalldirs) $(DESTDIR)/etc/freesmartphone/conf/
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/fsodeviced/conf/htcleo/fsodeviced.conf b/fsodeviced/conf/htcleo/fsodeviced.conf
index 4ebd5ee..1fabd42 100644
--- a/fsodeviced/conf/htcleo/fsodeviced.conf
+++ b/fsodeviced/conf/htcleo/fsodeviced.conf
@@ -1,4 +1,4 @@
-# fsodeviced.conf for HTC Dream aka T-Mobile G1, Google ADP-1
+# fsodeviced.conf for HTC Leo aka HTC HD2
 [logging]
 log_level = INFO
 log_to = file
diff --git a/fsodeviced/configure.ac b/fsodeviced/configure.ac
index 6235f20..dada59d 100644
--- a/fsodeviced/configure.ac
+++ b/fsodeviced/configure.ac
@@ -163,6 +163,7 @@ AC_CONFIG_FILES([
   conf/htc_qualcomm_dream/Makefile
   conf/htc_qualcomm_dream/alsa-default/Makefile
   conf/htc_qualcomm_msm/Makefile
+  conf/htcleo/Makefile
   conf/motorola_ezx/Makefile
   conf/nokia_n900/Makefile
   conf/nokia_n900/alsa-default/Makefile
diff --git a/fsogsmd/conf/Makefile.am b/fsogsmd/conf/Makefile.am
index 71f499f..ebce33a 100644
--- a/fsogsmd/conf/Makefile.am
+++ b/fsogsmd/conf/Makefile.am
@@ -6,6 +6,7 @@ SUBDIRS = \
 	default \
 	htc_qualcomm_dream \
 	htc_qualcomm_msm \
+	htcleo \
 	motorola_ezx \
 	openmoko_gta \
 	palm_pre \
diff --git a/fsogsmd/conf/htcleo/Makefile.am b/fsogsmd/conf/htcleo/Makefile.am
new file mode 100644
index 0000000..6efcd40
--- /dev/null
+++ b/fsogsmd/conf/htcleo/Makefile.am
@@ -0,0 +1,12 @@
+include $(top_srcdir)/Makefile.decl
+
+NULL=
+
+THISDIR = `basename $$PWD`
+
+confdir = $(sysconfdir)/freesmartphone/conf/$(THISDIR)
+dist_conf_DATA = \
+	fsogsmd.conf \
+	$(NULL)
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/fsogsmd/configure.ac b/fsogsmd/configure.ac
index f76a6e2..ceb4b27 100644
--- a/fsogsmd/configure.ac
+++ b/fsogsmd/configure.ac
@@ -182,6 +182,7 @@ AC_CONFIG_FILES([
   conf/default/Makefile
   conf/htc_qualcomm_dream/Makefile
   conf/htc_qualcomm_msm/Makefile
+  conf/htcleo/Makefile
   conf/motorola_ezx/Makefile
   conf/openmoko_gta/Makefile
   conf/palm_pre/Makefile
diff --git a/fsotdld/conf/Makefile.am b/fsotdld/conf/Makefile.am
index 15e979d..bf9db7d 100644
--- a/fsotdld/conf/Makefile.am
+++ b/fsotdld/conf/Makefile.am
@@ -6,6 +6,7 @@ SUBDIRS = \
 	default \
 	openmoko_gta \
 	htc_qualcomm_dream \
+	htcleo \
 	$(NULL)
 
 MAINTAINERCLEANFILES = Makefile.in
diff --git a/fsotdld/conf/htcleo/Makefile.am b/fsotdld/conf/htcleo/Makefile.am
new file mode 100644
index 0000000..b64fef5
--- /dev/null
+++ b/fsotdld/conf/htcleo/Makefile.am
@@ -0,0 +1,12 @@
+include $(top_srcdir)/Makefile.decl
+
+NULL=
+
+THISDIR = `basename $$PWD`
+
+confdir = $(sysconfdir)/freesmartphone/conf/$(THISDIR)
+dist_conf_DATA = \
+	fsotdld.conf \
+	$(NULL)
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/fsotdld/configure.ac b/fsotdld/configure.ac
index d5a1ef8..4bac08b 100644
--- a/fsotdld/configure.ac
+++ b/fsotdld/configure.ac
@@ -117,6 +117,7 @@ AC_CONFIG_FILES([
   conf/default/Makefile
   conf/openmoko_gta/Makefile
   conf/htc_qualcomm_dream/Makefile
+  conf/htcleo/Makefile
   data/Makefile
   data/org.freesmartphone.otdld.service
   src/Makefile
diff --git a/fsousaged/conf/Makefile.am b/fsousaged/conf/Makefile.am
index 33b503f..4a342d0 100644
--- a/fsousaged/conf/Makefile.am
+++ b/fsousaged/conf/Makefile.am
@@ -5,6 +5,7 @@ NULL=
 SUBDIRS = \
 	default \
 	htc_qualcomm_dream \
+	htcleo \
 	openmoko_gta \
 	palm_pre \
 	$(NULL)
diff --git a/fsousaged/conf/htcleo/Makefile.am b/fsousaged/conf/htcleo/Makefile.am
new file mode 100644
index 0000000..d529658
--- /dev/null
+++ b/fsousaged/conf/htcleo/Makefile.am
@@ -0,0 +1,12 @@
+include $(top_srcdir)/Makefile.decl
+
+NULL=
+
+THISDIR = `basename $$PWD`
+
+confdir = $(sysconfdir)/freesmartphone/conf/$(THISDIR)
+dist_conf_DATA = \
+	fsousaged.conf \
+	$(NULL)
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/fsousaged/configure.ac b/fsousaged/configure.ac
index 2cb5f78..2646328 100644
--- a/fsousaged/configure.ac
+++ b/fsousaged/configure.ac
@@ -83,6 +83,7 @@ AC_CONFIG_FILES([
   conf/Makefile
   conf/default/Makefile
   conf/htc_qualcomm_dream/Makefile
+  conf/htcleo/Makefile
   conf/openmoko_gta/Makefile
   conf/palm_pre/Makefile
   data/org.freesmartphone.ousaged.service
-- 
1.7.1

_______________________________________________
Smartphones-userland mailing list
Smartphones-userland@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/smartphones-userland

Reply via email to