[PATCH] test/py: Add support to enable check for bad pattern

2024-05-22 Thread Love Kumar
get kernel image!') with u_boot_console.enable_check(check_type, check_pattern): u_boot_console.run_command('') Signed-off-by: Love Kumar --- test/py/u_boot_console_base.py | 44 ++ 1 file changed, 44 insertions(+) diff --git a/test/py/u_boot_console_base.py b

Re: [PATCH v4] test/py: net_boot: Add test cases for net boot

2024-05-06 Thread Love Kumar
On 04/05/24 1:48 am, Tom Rini wrote: On Fri, May 03, 2024 at 05:39:46PM +0530, Love Kumar wrote: Add tests for booting image using tftpboot/pxe boot commands, tftpboot boot case loads the FIT image into DDR and boots using bootm command whereas pxe boot cases downloads the pxe configuration

[PATCH v4] test/py: net_boot: Add test cases for net boot

2024-05-03 Thread Love Kumar
. This test relies on boardenv_* containing configuration values including the parameter 'pattern'. tftpboot/pxe boot cases boots the Linux till the boot log pattern value is matched. For example, if the parameter 'pattern' is defined as 'login:', it will boot till login prompt. Signed-off-by: Love

[PATCH v3] test/py: net_boot: Add test cases for net boot

2024-04-30 Thread Love Kumar
. This test relies on boardenv_* containing configuration values including the parameter 'pattern'. tftpboot/pxe boot cases boots the Linux till the boot log pattern value is matched. For example, if the parameter 'pattern' is defined as 'login:', it will boot till login prompt. Signed-off-by: Love

Re: [PATCH 2/5] mmc: zynq-sdhci: refactor tapdelay settings

2024-03-14 Thread Love Kumar
00 0001 ZynqMP> Regards, Love Kumar On 23/02/24 7:36 pm, Steffen Dirkwinkel wrote: From: Steffen Dirkwinkel Previously we were setting in tapdelay for SD1 every time even if SD0 was requested. The SD tapdelay settings are shifted by 16 bits between SD0 and SD1. We can use that to make our

[PATCH v4] test/py: reset: Add a test for reset command

2024-03-12 Thread Love Kumar
Add a test for reset commands which performs resetting of CPU, It does COLD reset by default and WARM reset with -w option. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined Changes in v3: - Fix the issue with bad pattern found on console

[PATCH v4] test/py: saveenv: Add a test for saveenv command

2024-03-12 Thread Love Kumar
Add test case for saveenv command in non-JTAG bootmode which saves the u-boot environment variables in persistent storage. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined Changes in v3: - Fix the issue with bad patterns and escape

Re: [PATCH v3] test/py: reset: Add a test for reset command

2024-03-11 Thread Love Kumar
Hi, On 11/03/24 2:11 pm, Angelo Dureghello wrote: Hi, jfyi, reset support added in qemu merged as commit d3c79c3974. Regards, angelo The other issue was with echo commands: => echo $modeboot $modeboot => echo $? $? Does HUSH shell is enabled by default for this? Regards, Love

[PATCH v3] test/py: saveenv: Add a test for saveenv command

2024-02-19 Thread Love Kumar
Add test case for saveenv command in non-JTAG bootmode which saves the u-boot environment variables in persistent storage. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined Changes in v3: - Fix the issue with bad patterns and escape

[PATCH v3] test/py: reset: Add a test for reset command

2024-02-19 Thread Love Kumar
Add a test for reset commands which performs resetting of CPU, It does COLD reset by default and WARM reset with -w option. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined Changes in v3: - Fix the issue with bad pattern found on console

[PATCH v2] test/py: reset: Add a test for reset command

2024-02-13 Thread Love Kumar
Add a test for reset commands which performs resetting of CPU, It does COLD reset by default and WARM reset with -w option. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined --- test/py/tests/test_reset.py | 63

[PATCH v2] test/py: saveenv: Add a test for saveenv command

2024-02-13 Thread Love Kumar
Add test case for saveenv command in non-JTAG bootmode which saves the u-boot environment variables in persistent storage. Signed-off-by: Love Kumar --- Changes in v2: - Set bootmode through boardenv if modeboot is not defined --- test/py/tests/test_saveenv.py | 138

[PATCH v5] test/py: net: Add dhcp abort test

2024-01-30 Thread Love Kumar
Abort the dhcp request in the middle by pressing ctrl + c on u-boot prompt and validate the abort status. Signed-off-by: Love Kumar --- Changes in v2: - Mark CMD_MII command dependency Changes in v3: - Skip the test if PHY device not present Changes in v4: - Setup the network configuration

[PATCH] test/py: scsi: Add test for scsi commands

2024-01-19 Thread Love Kumar
Add a following test cases for scsi commands: scsi_reset - To reset SCSI controller scsi_info - To show available SCSI devices scsi_scan - To (re-)scan SCSI bus scsi_device - To show or set surrent device scsi_part - To print partition table of selected SCSI device Signed-off-by: Love Kumar

[PATCH] test/py: spi: Add tests for SPI flash device

2024-01-19 Thread Love Kumar
Add test cases for sf commands to verify various SPI flash operations such as erase, write and read. It also adds qspi lock unlock cases. This test relies on boardenv_* configurations to run it for different SPI flash family such as single SPI, QSPI, and OSPI. Signed-off-by: Love Kumar --- test

[PATCH] test/py: nand: Add tests for NAND flash device

2024-01-19 Thread Love Kumar
Add tests for nand commands to test various NAND flash operations such as erase, write and read. Signed-off-by: Love Kumar --- test/py/tests/test_nand.py | 201 + 1 file changed, 201 insertions(+) create mode 100644 test/py/tests/test_nand.py diff --git

[PATCH] test/py: usb: Add tests for USB device

2024-01-19 Thread Love Kumar
Add the test cases for usb commands to test its various functionality such as start, stop, reset, info, tree, storage, dev, part, ls, load, and save. It also adds different file systems cases such as fat32, ext2 and ext4. Signed-off-by: Love Kumar --- test/py/tests/test_usb.py | 626

[PATCH] test/py: mmc: Add tests for MMC device

2024-01-19 Thread Love Kumar
Add the test cases for mmc commands to test its various functionality such as mmc list, dev, info, rescan, part, ls, load, and save. It also adds different file systems cases such as fat32, ext2 and ext4. Signed-off-by: Love Kumar --- test/py/tests/test_mmc.py | 671

[PATCH] test/py: secure: Add secure tests for Zynq & ZynqMP

2024-01-19 Thread Love Kumar
Add test cases to verify the different type of secure boot images loaded at DDR location for AMD's ZynqMP SoC. It also adds tests authentication and decryption functionality using AES and RSA features for Zynq. Signed-off-by: Love Kumar --- test/py/tests/test_zynq_secure.py | 190

[PATCH] test/py: gpio: Add gpio pins generic test

2024-01-18 Thread Love Kumar
-by: Love Kumar --- test/py/tests/test_gpio.py | 90 ++ 1 file changed, 90 insertions(+) diff --git a/test/py/tests/test_gpio.py b/test/py/tests/test_gpio.py index 0af186f23602..3e16e6365743 100644 --- a/test/py/tests/test_gpio.py +++ b/test/py/tests

[PATCH] test/py: zynqmp_rpu: Add test for loading RPU apps

2024-01-18 Thread Love Kumar
Add testcases for loading RPU applications in split and lockstep mode including the negative one for AMD's ZynqMP SoC. Signed-off-by: Love Kumar --- test/py/tests/test_zynqmp_rpu.py | 208 +++ 1 file changed, 208 insertions(+) create mode 100644 test/py/tests

[PATCH v2] test/py: net_boot: Add test cases for net boot

2024-01-12 Thread Love Kumar
. This test relies on boardenv_* containing configuration values including the parameter 'pattern'. tftpboot/pxe boot cases boots the Linux till the boot log pattern value is matched. For example, if the parameter 'pattern' is defined as 'login:', it will boot till login prompt. Signed-off-by: Love

[PATCH] test/py: saveenv: Add a test for saveenv command

2024-01-11 Thread Love Kumar
Add test case for saveenv command in non-JTAG bootmode which saves the u-boot environment variables in persistent storage. Signed-off-by: Love Kumar --- test/py/tests/test_saveenv.py | 125 ++ 1 file changed, 125 insertions(+) create mode 100644 test/py/tests

[PATCH] test/py: reset: Add a test for reset command

2024-01-10 Thread Love Kumar
Add a test for reset commands which performs resetting of CPU, It does COLD reset by default and WARM reset with -w option. Signed-off-by: Love Kumar --- test/py/tests/test_reset.py | 50 + 1 file changed, 50 insertions(+) create mode 100644 test/py/tests

[PATCH] test/py: bootstage: Add test for bootstage command

2024-01-09 Thread Love Kumar
Add test cases for bootstage command to print the bootstage report, to stash the data into memory and to unstash the data from memory. Signed-off-by: Love Kumar --- test/py/tests/test_bootstage.py | 67 + 1 file changed, 67 insertions(+) create mode 100644 test

[PATCH] test/py: net_boot: Add test cases for net boot

2024-01-08 Thread Love Kumar
. Signed-off-by: Love Kumar --- test/py/tests/test_net_boot.py | 371 + 1 file changed, 371 insertions(+) create mode 100644 test/py/tests/test_net_boot.py diff --git a/test/py/tests/test_net_boot.py b/test/py/tests/test_net_boot.py new file mode 100644 index

[PATCH] test/py: memtest: Add tests for mtest command

2024-01-03 Thread Love Kumar
Add the following memory tests: memtest_negative - To test mtest command by providing incorrect inputs memtest_ddr - To test memory write-read-comparision for DDR memory Signed-off-by: Love Kumar --- test/py/tests/test_memtest.py | 68 +++ 1 file changed, 68

[PATCH v3] test/py: i2c: Add tests for i2c command

2024-01-01 Thread Love Kumar
Add below test cases for i2c commands: i2c_bus - To show i2c bus info, i2c_dev - To set or show the current bus, i2c_probe - To probe the i2c device, i2c_eeprom - To test i2c eeprom device, i2c_probe_all_buses - To list down all the buses and probes it Signed-off-by: Love Kumar --- Changes in v2

[PATCH v3] test/py: mii: Add tests for mii command

2024-01-01 Thread Love Kumar
Add below test cases for mii commands: mii_info -To display MII PHY info mii_list - To list MII devices mii_set_device - To set MII device mii_read - To reads register from MII PHY address mii_dump - To display data from MII PHY address Signed-off-by: Love Kumar --- Changes in v2: - Get MII

[PATCH] test/py: mdio: Add tests for mdio command

2023-12-19 Thread Love Kumar
Add below test cases for mdio commands: mdio_list - To list MDIO buses mdio_read - To read PHY's register at . mdio_write - To write PHY's register at . Signed-off-by: Love Kumar --- test/py/tests/test_mdio.py | 79 ++ 1 file changed, 79 insertions(+) create

[PATCH v2] test/py: mii: Add tests for mii command

2023-12-05 Thread Love Kumar
Add below test cases for mii commands: mii_info -To display MII PHY info mii_list - To list MII devices mii_set_device - To set MII device mii_read - To reads register from MII PHY address mii_dump - To display data from MII PHY address Signed-off-by: Love Kumar --- Changes in v2: - Get MII

[UBOOT PATCH v4] test/py: net: Add dhcp abort test

2023-11-21 Thread Love Kumar
Abort the dhcp request in the middle by pressing ctrl + c on u-boot prompt and validate the abort status. Signed-off-by: Love Kumar --- Changes in v2: - Mark CMD_MII command dependency Changes in v3: - Skip the test if PHY device not present Changes in v4: - Setup the network configuration

[PATCH v2] test/py: i2c: Add tests for i2c command

2023-11-21 Thread Love Kumar
Add below test cases for i2c commands: i2c_bus - To show i2c bus info, i2c_dev - To set or show the current bus, i2c_probe - To probe the i2c device, i2c_eeprom - To test i2c eeprom device, i2c_probe_all_buses - To list down all the buses and probes it Signed-off-by: Love Kumar --- Changes in v2

[PATCH] test/py: mii: Add tests for mii command

2023-11-21 Thread Love Kumar
Add below test cases for mii commands: mii_info -To display MII PHY info mii_list - To list MII devices mii_set_device - To set MII device mii_read - To reads register from MII PHY address mii_dump - To display data from MII PHY address Signed-off-by: Love Kumar --- test/py/tests/test_mii.py

[PATCH] test/py: i2c: Add tests for i2c command

2023-11-14 Thread Love Kumar
Add below test cases for i2c commands: i2c_bus - To show i2c bus info, i2c_dev - To set or show the current bus, i2c_probe - To probe the i2c device, i2c_eeprom - To test i2c eeprom device, i2c_probe_all_buses - To list down all the buses and probes it Signed-off-by: Love Kumar --- test/py

[UBOOT PATCH v3] test/py: net: Add dhcp abort test

2023-11-14 Thread Love Kumar
Abort the dhcp request in the middle by pressing ctrl + c on u-boot prompt and validate the abort status. Signed-off-by: Love Kumar --- Changes in v2: - Mark CMD_MII command dependency Changes in v3: - Skip the test if PHY device not present --- test/py/tests/test_net.py | 47

[UBOOT PATCH v3] test/py: net: Add a TFTP put test

2023-11-07 Thread Love Kumar
Execute tftpput command for uploading files to a server and validate its size & CRC32. Signed-off-by: Love Kumar --- Changes in v2: - Add marking for cmd_tftpput config Chnages in v3: - Add filename to upload as part of env file --- test/py/tests/test_net.py

[UBOOT PATCH v2] test/py: net: Add dhcp abort test

2023-10-31 Thread Love Kumar
Abort the dhcp request in the middle by pressing ctrl + c on u-boot prompt and validate the abort status. Signed-off-by: Love Kumar --- Changes in v2: - Mark CMD_MII command dependency --- test/py/tests/test_net.py | 45 +++ 1 file changed, 45 insertions

[UBOOT PATCH v2] test/py: net: Add a TFTP put test

2023-10-31 Thread Love Kumar
Execute tftpput command for uploading files to a server and validate its size & CRC32. Signed-off-by: Love Kumar --- Changes in v2: - Add marking for cmd_tftpput config --- test/py/tests/test_net.py | 72 +++ 1 file changed, 72 insertions(+) diff -

[PATCH] test/py: net: Add a test for 'pxe get' command

2023-10-03 Thread Love Kumar
Execute the 'pxe get' command to download a pxe configuration file from the TFTP server and validate its interpretation. Signed-off-by: Love Kumar --- test/py/tests/test_net.py | 66 +++ 1 file changed, 66 insertions(+) diff --git a/test/py/tests/test_net.py

[PATCH] test/py: net: Add dhcp abort test

2023-10-03 Thread Love Kumar
Abort the dhcp request in the middle by pressing ctrl + c on u-boot prompt and validate the abort status. Signed-off-by: Love Kumar --- test/py/tests/test_net.py | 44 +++ 1 file changed, 44 insertions(+) diff --git a/test/py/tests/test_net.py b/test/py

[PATCH] test/py: net: Add a TFTP put test

2023-10-03 Thread Love Kumar
Execute tftpput command for uploading files to a server and validate its size & CRC32. Signed-off-by: Love Kumar --- test/py/tests/test_net.py | 69 +++ 1 file changed, 69 insertions(+) diff --git a/test/py/tests/test_net.py b/test/py/tests/test_net.py i

[PATCH v2] test/py: sleep: Add a test for the time command

2023-09-27 Thread Love Kumar
Execute "time ", and validate that it gives the approximately the correct amount of command execution time. Signed-off-by: Love Kumar --- Changes in v2: - Used @pytest.mark.buildconfigspec('') --- test/py/tests/test_sleep.py | 18 ++ 1 file changed, 18 insertions(+)

[PATCH] test/py: sleep: Add a test for the time command

2023-09-26 Thread Love Kumar
Execute "time ", and validate that it gives the approximately the correct amount of command execution time. Signed-off-by: Love Kumar --- test/py/tests/test_sleep.py | 20 1 file changed, 20 insertions(+) diff --git a/test/py/tests/test_sleep.py b/tes

SALE DESPERATE DEAL,DESPERATE DEAL,DESPERATE DEAL

2015-03-19 Thread love kumar
SALE DESPERATE DEAL,DESPERATE DEAL,DESPERATE DEAL PIONEER PARK 1280SQFT MGF PALM DRIVE 1950SQFT IREO SKYON 2795SQFT MGF THE VILLAS 3470SQFT MGF THE VILLAS 3890SQFT 300SQYRD GROUND FLOOR (S.L.3 B BLOCK) @ 1CR. PRASHANT CHAUDHARY 8130615557 -- You received this message because you are

Urgent want Plot in sector=30,45,46 or rosewoodcity Size=100 to 180sqyrd Prashant chaudhary 8130615557

2014-08-13 Thread love kumar
Urgent want Plot in sector=30,45,46 or rosewoodcity Size=100 to 180sqyrd Prashant chaudhary 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an

Builder Floor(s) // Apartment(s) For SALE

2014-08-04 Thread love kumar
Dear Associates, Greetings from Sapphire Realtors !!! Builder Floor(s) // Apartment(s) For SALE S No Location Floor Area Type Price Remarks 1 DLF City Phase 2 First floor 400 sqyds 4bhk 2.75 CR Renovated 2 DLF City Phase 2 SF + roof 300 sqyds 3bhk 1.90 CR Renovated 3

Dear Associates, Greetings from Sapphire Realtors !!! Below are the options available for SALE: -

2014-07-21 Thread love kumar
Dear Associates, Greetings from Sapphire Realtors !!! Below are the options available for SALE: - *Independent builder floors in DLF City Phase 2: -* · 400 sqyds, 4bhk, recently/nicely renovated 1st floor, modular kitchen, car parking. *Asking – 2.75 CR* · 300 sqyds,

URGENT WANTED PLOTS :AREA=240SQYRD OR 270SQYRD IN SOUTH CITY 1 PRASHANT CHAUDHARY 8130615557

2014-07-18 Thread love kumar
URGENT WANTED PLOTS :AREA=240SQYRD OR 270SQYRD IN SOUTH CITY 1 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an email to

URGENT SALE :3BHK AREA=1950SQFT IN MGF PALM DRIVE DEMAND=9500 :4BHK AREA=2630SQFT IN DLF NEW TOWN HEIGHT SEC.90 DEMAND=4300

2014-07-14 Thread love kumar
URGENT SALE :3BHK AREA=1950SQFT IN MGF PALM DRIVE DEMAND=9500 :4BHK AREA=2630SQFT IN DLF NEW TOWN HEIGHT SEC.90 DEMAND=4300 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this

URGENT SALE :3BHK AREA=1950SQFT IN MGF PALM DRIVE DEMAND=9500 :4BHK AREA=2630SQFT IN DLF NEW TOWN HEIGHT SEC.90 DEMAND=4300

2014-07-12 Thread love kumar
URGENT SALE :3BHK AREA=1950SQFT IN MGF PALM DRIVE DEMAND=9500 :4BHK AREA=2630SQFT IN DLF NEW TOWN HEIGHT SEC.90 DEMAND=4300 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this

FOR SALE

2014-07-09 Thread love kumar
APARTMENT FOR SALE 1.2BHK AREA=1294SQFT IN SUPERTECH ARAVILLE DEMAND=4900 2.3BHK AREA=1755SQFT IN SPAZE PRIVY DEMAND=7300 3.3BHK AREA=2112SQFT IN DLF ULTIMA DEMAND=7500 3.3BHK AREA=1622SQFT IN TODAY CALLIDORA DEMAND=5000 4.4BHK AREA=3125SQFT IN BESTECH PARK VIEW SPA DEMAND=10500 5.4BHK

APARTMENTS KOTHI OR PLOTS FOR SALE

2014-07-06 Thread love kumar
APARTMENT FOR SALE 1.2BHK AREA=1294SQFT IN SUPERTECH ARAVILLE DEMAND=4900 2.3BHK AREA=1755SQFT IN SPAZE PRIVY DEMAND=7300 3.3BHK AREA=2112SQFT IN DLF ULTIMA DEMAND=7500 3.3BHK AREA=1622SQFT IN TODAY CALLIDORA DEMAND=5000 4.4BHK AREA=3125SQFT IN BESTECH PARK VIEW SPA DEMAND=10500 5.4BHK

PLOTS FOR SALE

2014-07-02 Thread love kumar
PLOTS FOR SALE 1.200SQYRD DLF PHASE 2 DEMAND=1.55 2.215SQYRD DLF PHASE 2 DEMAND=1.60 3.250SQYRD DLF PHASE 2 DEMAND=1.50 4.300SQYRD DLF PHASE 2 DEMAND=1.55 5.400SQYRD DLF PHASE 2 DEMAND=1.25 6.500SQYRD DLF PHASE 2 DEMAND=2LAC. 7.300SQYRD DLF PHASE 3 DEMAND=1.10 8.400SQYRD DLF PHASE 3

PLOTS FOR SALE

2014-06-28 Thread love kumar
PLOTS FOR SALE 1.200SQYRD DLF PHASE 2 DEMAND=1.55 2.215SQYRD DLF PHASE 2 DEMAND=1.60 3.250SQYRD DLF PHASE 2 DEMAND=1.50 4.300SQYRD DLF PHASE 2 DEMAND=1.55 5.400SQYRD DLF PHASE 2 DEMAND=1.25 6.500SQYRD DLF PHASE 2 DEMAND=2LAC. 7.400SQYRD DLF PHASE 3 DEMAND=1.25 8.360SQYRD SOUTH CITY 1

FOR SALE

2014-06-16 Thread love kumar
APARTMENT FOR SALE 1.2BHK AREA=1294SQFT IN SUPERTECH ARAVILLE DEMAND=4900 2.3BHK AREA=1755SQFT IN SPAZE PRIVY DEMAND=7300 3.3BHK AREA=2112SQFT IN DLF ULTIMA DEMAND=7500 4.4BHK AREA=3125SQFT IN BESTECH PARK VIEW SPA DEMAND=10500 5.4BHK AREA=2562SQFT IN ORCHID PETAL DEMAND=8500 BUILDER FLOOR

FOR SALE

2014-06-02 Thread love kumar
APARTMENT FOR SALE 1.2BHK SIZE=1295SQFT IN SUPERTECH ARAVILLE DEMAND=4900 2.3BHK SIZE=1755SQFT IN SPAZE PRIVY DEMAND=7300 3.3BHK SIZE=2112SQFT IN DLF ULTIMA DEMAND=2CR. 4.4BHK SIZE=3125SQFT IN PARK VIEW SPA DEMAND=10500 5.4BHK SIZE=3280SQFT IN VARUN SOCIETY DEMAND=2.25CR BUILDER FLOOR FOR

Fwd: URGENT WANTED

2014-03-28 Thread love kumar
DEAR ALL URGENT WANTED DLF NEW TOWN HEIGHTS SECTOR-86 1930 SQFT PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an email to

Fwd: realtywaves URGENT REQUIRED BUILDER FLOOR FOR RENT IN SUSHANT LOK-1 ONLY G.FLOOR

2014-01-24 Thread love kumar
URGENT REQUIRED BUILDER FLOOR FOR RENT IN SUSHANT LOK-1 ONLY G.FLOOR PRASHANT 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an email to

2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=4900 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 3BHK SIZE=2430SQFT. IN MALIBU TOWNE DEMAND=1.90CR. FOR RENT 3BHK SIZE=1983 IN PARK PLACE DEMAND=50K 3BHK BUIL

2013-11-15 Thread love kumar
2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=4900 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 3BHK SIZE=2430SQFT. IN MALIBU TOWNE DEMAND=1.90CR. FOR RENT 3BHK SIZE=1983 IN PARK PLACE DEMAND=50K 3BHK BUILDER FLOOR UNFURNISHED IN DLF PHASE 2 DEMAND=3 3BHK SIZE=240SQYRD. IN NIRVANA COUNTRY

for sale or rent

2013-11-15 Thread love kumar
2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=4900 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 3BHK SIZE=2430SQFT. IN MALIBU TOWNE DEMAND=1.90CR. FOR RENT 3BHK SIZE=1983 IN PARK PLACE DEMAND=50K 3BHK BUILDER FLOOR UNFURNISHED IN DLF PHASE 2 DEMAND=3 3BHK SIZE=240SQYRD. IN NIRVANA COUNTRY

VERY URGENT FOR SALE SUPERTECH ARAVILLE

2013-11-10 Thread love kumar
VERY URGENT FOR SALE SUPERTECH ARAVILLE 1295SQFT. 2BHK DEMAND=4900 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an

BELAIR BELAIR BELAIR BELAIR

2013-11-07 Thread love kumar
FOR SALE 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3500SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=4200SQFT IN DLF BELAIRE DEMAND=13500 FOR RENT 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=70K 4BHK SIZE=3500SQFT IN DLF BELAIRE DEMAND=80K PRASHANT CHAUDHARY 8130615557 -- You

Fwd: ncrrealtors117435 URGENT FOR SALE SUPERTECH ARAVILLE 2BHK AREA=1295SQFT DEMAND=4900 PRASHANT CHAUDHARY 8130615557

2013-11-06 Thread love kumar
URGENT FOR SALE SUPERTECH ARAVILLE 2BHK AREA=1295SQFT DEMAND=4900 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an email to

FOR SALE 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3500SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=4200SQFT IN DLF BELAIRE DEMAND=13500 FOR RENT 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=

2013-11-01 Thread love kumar
FOR SALE 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3500SQFT IN DLF BELAIRE DEMAND=14000 4BHK SIZE=4200SQFT IN DLF BELAIRE DEMAND=13500 FOR RENT 4BHK SIZE=3000SQFT IN DLF BELAIRE DEMAND=70K 4BHK SIZE=3500SQFT IN DLF BELAIRE DEMAND=80K INDEPENDENT HOUSE 3BHK FOR RENT IN DLF

Fwd: Dwarka Expressway - 2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=5000 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500

2013-10-28 Thread love kumar
2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=5000 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails

Fwd: {R. E. G:103197} FOR RENT

2013-10-26 Thread love kumar
RENT 2BHK SIZE=1150SQFT. IN DLF PRINCETON DEMAND=3 3BHK SIZE=1400SQFT. IN DLF WELLINGTON DEMAND=33000 3BHK BUILDER FLOOR UNFURNISHED IN DLF PHASE 2 DEMAND=3000 3BHK SIZE=3000SQFT. FURNISHED IN EXOTICA DEMAND=80K 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=50K 3BHK SIZE=240SQYRD. IN

Fwd: {AXIOM Landbase:2157} 4BHK SIZE=300OSQFT. FURNISHED IN DLF SUMMIT DEMAND=75K

2013-10-25 Thread love kumar
3BHK SIZE=2430SQFT. IN MALIBU TOWNE DEMAND=1.90CR. FOR RENT 4BHK SIZE=300OSQFT. FURNISHED IN DLF SUMMIT DEMAND=75K PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group

Fwd: ncrrealtors115820 FOR RENT

2013-10-21 Thread love kumar
RENT 2BHK SIZE=1150SQFT. IN DLF PRINCETON DEMAND=3 3BHK SIZE=1400SQFT. IN DLF WELLINGTON DEMAND=33000 3BHK BUILDER FLOOR UNFURNISHED IN DLF PHASE 2 DEMAND=25000 3BHK SIZE=3000SQFT. FURNISHED IN EXOTICA DEMAND=80K 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=50K 3BHK SIZE=240SQYRD. IN

Fwd: PLOT VILLA PENTHOUSE FOR SALE

2013-10-18 Thread love kumar
PLOT 150SQYRD.WEST FACING IN DLF PHASE 2 DEMAND=1.60 PER SQYRD. 250SQYRD. EAST FACING IN DLF PHASE 2 DEMAND=1.60 PER SQYRD. VILLA 3BHK SIZE=240SQYRD. IN NIRVANA COUNTRY DEMAND=3.75CR. 5BHK SIZE=400SQYRD. IN AARON VILLE DEMAND=4.50CR. PENT HOUSE 5BHK SIZE=6000SQFT. IN EXOTICA DEMAND=12500

Fwd: Dwarka Expressway - DLF PHASE 5 APARTMENT FOR SALE OR RENT

2013-10-17 Thread love kumar
FOR SALE 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 FOR RENT 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=50K 3BHK SIZE=240SQYRD. IN NIRVANA COUNTRY DEMAND=45K 4BHK SIZE=300OSQFT.

URGENT FOR SALE RENT

2013-10-16 Thread love kumar
SALE 2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=5000 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2430SQFT. IN MALIBU TOWNE

FOR SALE AND RENT

2013-10-11 Thread love kumar
SALE 2BHK SIZE=1295SQFT. IN ARAVILLE DEMAND=5000 3BHK SIZE=1900SQFT. IN PALM GARDEN DEMAND=5500 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE

2BHK 1295SQFT. PARK FACING SUPERTECH ARAVILLE FOR SALE

2013-10-10 Thread love kumar
2BHK 1295SQFT. PARK FACING SUPERTECH ARAVILLE FOR SALE CALL FOR PRICE PRASHANT CHAUDHARY 8130615557 -- You received this message because you are subscribed to the Google Groups International Real Estate group. To unsubscribe from this group and stop receiving emails from it, send an email

FOR SALE RENT

2013-10-09 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE

FOR RENT OR SALE

2013-10-07 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE

URGENT FOR SALE RENT

2013-10-05 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE

URGENT FOR SALE RENT

2013-10-03 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE

URGENT FOR SALE RENT

2013-09-30 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 3BHK SIZE=2282SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE

FOR SALE RENT

2013-09-28 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=4200SQFT. IN DLF BELAIRE

FOR SALE RENT

2013-09-25 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2705SQFT. IN DLF PARK PLACE DEMAND=13000 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=4200SQFT. IN DLF BELAIRE

Fwd: {R. E. G:98448} URGENT FOR SALE RENT

2013-09-20 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=4200SQFT. IN DLF BELAIRE DEMAND=13500 BUILDER FLOOR 3BHK SIZE=1500SQFT. IN

Fwd: ncrrealtors111698 URGENT FOR SALE RENT

2013-09-18 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=2917SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=3065SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=4200SQFT. IN DLF BELAIRE DEMAND=13500 BUILDER FLOOR 3BHK SIZE=1500SQFT. IN

Fwd: realtywaves VERY URGENT SALE RENT

2013-09-16 Thread love kumar
SALE 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=3065SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=4200SQFT. IN DLF BELAIRE DEMAND=13500 BUILDER FLOOR 3BHK SIZE=1500SQFT. IN DLF PHASE 2 DEMAND=2.10CR. RENT 3BHK BUILDER

URGENT FOR SALE RENT

2013-09-14 Thread love kumar
FOR SALE 2BHK SIZE=1295SQFT. IN SUPERTECH ARAVILLE DEMAND=5000 3BHK SIZE=1340SQFT. IN VALLEY VIEW DEMAND=1.25CR. 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=2666SQFT. IN VICTORY VALLEY DEMAND=8700 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=4200SQFT. IN DLF

BELAIRE BELAIRE BELAIRE BELAIRE BELAIRE BELAIRE BELAIRE

2013-09-12 Thread love kumar
FOR SALE 4BHK SIZE=3065 SQFT. IN DLF BELAIRE DEMAND=14200 4BHK SIZE=3505 SQFT. IN DLF BELAIRE DEMAND=14000 4BHK SIZE=4200 SQFT. IN DLF BELAIRE DEMAND=13500 3BHK SIZE=3100 SQFT. IN PALM DRIVE DEMAND=1 PRASHANT CHAUDHARY 8130615557 -- You received this message because you are

Fwd: {Gurgaon Real Estate-agents,advisors,investors..Earn Together} URGENT RENT

2013-09-08 Thread love kumar
BUILDER FLOOR 3BHK SIZE=1550SQFT. IN DLF EXCLUSIVE FLOOR FULLY FURNISHED DEMAND=2.30CR. 3 BHK SIZE=1500SQFT. IN DLF PHASE 2 DEMAND=2.10CR. FOR RENT 3BHK BUILDER FLOOR UNFURNISHED IN DLF PHASE 2 DEMAND=25000 2BHK SIZE=1000 SQFT. IN DLF PRINCETON DEMAND=28000 3BHK SIZE=1400 SQFT. IN DLF

URGENT SALE RENT

2013-09-07 Thread love kumar
FOR SALE 2BHK SIZE=1295SQFT. IN SUPERTECH ARAVILLE DEMAND=5000 3BHK SIZE=1340SQFT. IN VALLEY VIEW DEMAND=1.25CR. 3BHK SIZE=3000SQFT. IN BEVERLY PARK DEMAND=3.75CR. 3BHK SIZE=2666SQFT. IN VICTORY VALLEY DEMAND=8700 3BHK SIZE=1985SQFT. IN DLF PARK PLACE DEMAND=13500 4BHK SIZE=4200SQFT. IN DLF

Invitation to connect on LinkedIn

2012-08-30 Thread Love Kumar via LinkedIn
LinkedIn Love Kumar requested to add you as a connection on LinkedIn: -- ASHISH, I'd like to add you to my professional network on LinkedIn. - Love Accept invitation from Love Kumar http://www.linkedin.com/e/brnd1z-h6hyjui9-5d