From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] Commit 7ae47f6b causes a warning
Date: Sat, 14 Mar 2015 22:35:55 +0100 [thread overview]
Message-ID: <20150314223555.2a38520f@lilith> (raw)
In-Reply-To: <1422966166-3973-12-git-send-email-oe5hpm@oevsv.at>
Hello Hannes,
On Tue, 3 Feb 2015 13:22:34 +0100, Hannes Petermaier <oe5hpm@oevsv.at>
wrote:
> diff --git a/include/configs/bur_am335x_common.h b/include/configs/bur_am335x_common.h
> index e9d5d01..d7ea1c9 100644
> --- a/include/configs/bur_am335x_common.h
> +++ b/include/configs/bur_am335x_common.h
> @@ -12,6 +12,23 @@
> #ifndef __BUR_AM335X_COMMON_H__
> #define __BUR_AM335X_COMMON_H__
> /* ------------------------------------------------------------------------- */
> +#define BUR_COMMON_ENV \
> +"defaultip=192.168.60.253\0" \
> +"defaultsip=192.168.60.254\0" \
> +"netconsole=echo switching to network console ...; " \
> +"if dhcp; then " \
> +"setenv ncip ${serverip}; else " \
> +"setenv ncip 192.168.60.254; " \
> +"setenv serverip 192.168.60.254; " \
> +"setenv gatewayip 192.168.60.254; " \
> +"setenv ipaddr 192.168.60.1; " \
> +"fi;" \
> +"setenv netdisplay0 '" \
> +"setcurs 1 9; puts myip; setcurs 10 9; puts ${ipaddr};" \
> +"setcurs 1 10;puts serverip; setcurs 10 10; puts ${serverip}\;'" \
This line contains a '\;' sequence which gcc warns against:
cc1: warning: unknown escape sequence: '\;' [enabled by default]
Could you post a fix?
Amicalement,
--
Albert.
next prev parent reply other threads:[~2015-03-14 21:35 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-03 12:22 [U-Boot] [PATCH v2 01/24] drivers/video/am335x-fb: Add possibility to wait for stable power/picture Hannes Petermaier
2015-02-03 12:22 ` [U-Boot] [PATCH v2 02/24] common/lcd: Add command for setting cursor within lcd-console Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 03/24] common/lcd: Add command for writing to lcd-display Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 04/24] board/BuR/common: Take usage of am335x LCD-Display Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 05/24] board/BuR/common: try to setup cpsw mac-address from the devicetree Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 06/24] board/BuR/tseries: Enable HW-Watchdog Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 07/24] board/BuR/tseries: Enable U-Boot BOOTCOUNT feature Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 08/24] board/BuR/tseries: Enable EXT4 support Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 09/24] board/BuR/tseries: Change pinmux for GPIO2_28 from GPIO to PWM-Timeroutput Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 10/24] board/BuR/tseries: Chg pinmux - use free NAND Pins in non NAND-config as GPIO Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 11/24] board/BuR/tseries: Chg Pinmux - enable UART1 pins Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 12/24] board/BuR/common: Introduce Network Console and common environment for it Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-03-14 21:35 ` Albert ARIBAUD [this message]
2015-03-16 7:53 ` [U-Boot] Commit 7ae47f6b causes a warning Hannes Petermaier
2015-02-03 12:22 ` [U-Boot] [PATCH v2 13/24] board/BuR/common: Enable CONFIG_CMD_TIME Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 14/24] board/BuR/common: Add support for displaying BMP on LCD Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 15/24] board/BuR/tseries: Rework default-environment settings Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 16/24] board/BuR/tseries: cosmetic changes Hannes Petermaier
2015-03-06 15:45 ` [U-Boot] [U-Boot,v2,16/24] " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 17/24] board/BuR/kwb: switch to board HW-Rev3 Hannes Petermaier
2015-03-06 15:46 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 18/24] board/BuR/kwb: Support booting Linux Hannes Petermaier
2015-03-06 15:46 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 19/24] board/BuR/kwb: Redesign default-environment Hannes Petermaier
2015-03-06 15:46 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 20/24] board/BuR/kwb: Form a bootline for vxWorks Hannes Petermaier
2015-03-06 15:46 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 21/24] board/BuR/kwb: Support modify bootcmd through reset-controller Hannes Petermaier
2015-03-06 15:46 ` [U-Boot] [U-Boot, v2, " Tom Rini
2015-02-03 12:22 ` [U-Boot] [PATCH v2 22/24] intern: disable lcd-stdout Hannes Petermaier
2015-02-03 12:30 ` Hannes Petermaier
2015-02-03 12:22 ` [U-Boot] [PATCH v2 23/24] intern: Add specific offset do FAT-Filesystem Hannes Petermaier
2015-02-03 12:31 ` Hannes Petermaier
2015-02-03 12:22 ` [U-Boot] [PATCH v2 24/24] intern: Add copy scripts and target specific helpers Hannes Petermaier
2015-02-03 12:31 ` Hannes Petermaier
2015-03-06 15:44 ` [U-Boot] [U-Boot, v2, 01/24] drivers/video/am335x-fb: Add possibility to wait for stable power/picture Tom Rini
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=20150314223555.2a38520f@lilith \
--to=albert.u.boot@aribaud.net \
--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