From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 1/8] h2200: Add support for iPAQ h2200 palmtop
Date: Tue, 2 Oct 2012 22:19:24 +0200 [thread overview]
Message-ID: <201210022219.24815.marex@denx.de> (raw)
In-Reply-To: <506B49E0.2040801@gmail.com>
Dear ?ukasz Da?ek,
> On 02.10.2012 21:35, Marek Vasut wrote:
> > Dear Lukasz Dalek,
> >
> >> Add basic support for HP iPAQ h2200 palmtop. h2200 palmtop was targeted
> >> to general consumers. It has 64 MB of RAM, 32 MB flash. No intergrated
> >> Wi-Fi nor Ethernet. Based on Intel PXA255 processor. It was shipped with
> >> Windows CE 4.2 operating system.
> >>
> >> Signed-off-by: Lukasz Dalek<luk0104@gmail.com>
> >> ---
> >>
> >> board/h2200/Makefile | 51 ++++++++++++++
> >> board/h2200/h2200-header.S | 27 ++++++++
> >> board/h2200/h2200.c | 53 +++++++++++++++
> >> boards.cfg | 1 +
> >> include/configs/h2200.h | 156
> >>
> >> ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 288
> >> insertions(+), 0 deletions(-)
> >>
> >> create mode 100644 board/h2200/Makefile
> >> create mode 100644 board/h2200/h2200-header.S
> >> create mode 100644 board/h2200/h2200.c
> >> create mode 100644 include/configs/h2200.h
> >
> > Will you please learn to write patch changelog ?
>
> I will, I promise.
>
> >> diff --git a/board/h2200/Makefile b/board/h2200/Makefile
> >> new file mode 100644
> >> index 0000000..2265aa9
> >> --- /dev/null
> >> +++ b/board/h2200/Makefile
> >> @@ -0,0 +1,51 @@
> >> +#
> >> +# h2200 Support
> >> +#
> >> +# Copyright (C) 2012 Lukasz Dalek<luk0104@gmail.com>
> >> +#
> >> +# This program is free software; you can redistribute it and/or
> >> +# modify it under the terms of the GNU General Public License as
> >> +# published by the Free Software Foundation; either version 2 of
> >> +# the License, or (at your option) any later version.
> >> +#
> >> +# This program is distributed in the hope that it will be useful,
> >> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> >> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> >> +# GNU General Public License for more details.
> >> +#
> >> +# You should have received a copy of the GNU General Public License
> >> +# along with this program; if not, write to the Free Software
> >> +# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> >> +# MA 02111-1307 USA
> >> +#
> >> +
> >> +include $(TOPDIR)/config.mk
> >> +
> >> +LIB = $(obj)lib$(BOARD).o
> >> +
> >> +COBJS := h2200.o
> >> +
> >> +SRCS := $(COBJS:.o=.c) h2200-header.S
> >> +OBJS := $(addprefix $(obj),$(COBJS))
> >> +
> >> +ALL: $(LIB) h2200-header.bin
> >> +
> >> +h2200-header.o: h2200-header.S
> >> + $(CC) $(CFLAGS) -c -o $@ $<
> >
> > Try building with BUILD_DIR=<somewhere> ./MAKEALL h2200
>
> what toolchain do you recommend? I use codesourcery and it complains
> about some enums.
http://www.denx.de/wiki/DULG/ELDK or debian toolchains
> > hint: you're missing $(obj) all around here so the resulting files are
> > still in the source tree, not the BUILD_DIR, which is wrong of course.
>
> Can you recommend board which has proper Makefile?
All of them should, did you detect such problem elsewhere?
>
> ?ukasz Da?ek
Best regards,
Marek Vasut
next prev parent reply other threads:[~2012-10-02 20:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-02 15:04 [U-Boot] [PATCH v4 1/8] h2200: Add support for iPAQ h2200 palmtop Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 2/8] pxa: Add some stuff to examine cpu model and rev Lukasz Dalek
2012-10-02 19:36 ` Marek Vasut
2012-10-02 20:02 ` Łukasz Dałek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 3/8] usbether: Fixed bug when using with PXA25X chips Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 4/8] usbether: Define CONFIG_USB_ETH_{CDC, SUBSET} Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 5/8] usbether: Removed DEV_CONFIG_{CDC,SUBSET} Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 6/8] pxa25x: Add support for USB ethernet gadget Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 7/8] usb.h: Add udc_disconnect prototype to usb.h Lukasz Dalek
2012-10-02 15:04 ` [U-Boot] [PATCH v4 8/8] h2200: Add USB CDC ethernet support Lukasz Dalek
2012-10-02 19:35 ` [U-Boot] [PATCH v4 1/8] h2200: Add support for iPAQ h2200 palmtop Marek Vasut
2012-10-02 20:09 ` Łukasz Dałek
2012-10-02 20:19 ` Marek Vasut [this message]
2012-10-02 20:38 ` Łukasz Dałek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201210022219.24815.marex@denx.de \
--to=marex@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox