/srv/irclogs.ubuntu.com/2010/11/09/#ubuntu-arm.txt

=== hrw|gone is now known as hrw
hrwelo08:50
cwillu_at_workhrw, can you fix my network driver?09:07
cwillu_at_workactually, I wonder if they have a useable datasheet09:07
hrwcwillu_at_work: I am not kernel hacker sorry09:08
cwillu_at_workand?09:08
suihkulokkicwillu_at_work: I guess you can google for the datasheet faster than hrw :P09:09
cwillu_at_workhmm09:10
cwillu_at_workI wonder if this stick on the chip is actually intended for heat sinking purposes or something, or if it's just a qa thing09:10
cwillu_at_workgiven that it completely covers the chip09:10
cwillu_at_workalso, who took my small screwdriver?09:11
cwillu_at_worknever a prpplague around when you need one :/09:12
* cwillu_at_work gets some rubbing alcohol09:13
cwillu_at_work80 pages09:20
cwillu_at_workthis might be useful09:20
hrw;D09:20
=== JaMae is now known as JaMa
bernard_hi. who could i prod to make a change to the images here? http://cdimage.ubuntu.com/ubuntu-netbook/ports/releases/10.10/release/12:19
bernard_i'm not sure if the omap4 ones are meant to be pandaboard-specific (some bits are), but currently it doesn't allow overriding the kernel cmdline arguments12:20
bernard_which makes it difficult to add a console= argument to get any sign of life12:21
rsalvetibernard_: after writing the image to your sd card you're free to mount the first disk partition and change the boot.scr file12:23
bernard_yep, i know this12:23
rsalvetiwith the proper cmdline arguments you need12:23
rsalvetiso, what exactly do you want to do?12:23
bernard_but other people are running into the same issue. and it seems odd that it doesn't do so out of the box12:23
bernard_i just add console=ttyO2,115200n8 to the cmdline12:24
bernard_which if it's a pandaboard-specific image is probably fine to do12:24
rsalvetiyeah, there was a decision to avoid enabling console by default12:24
rsalvetithe omap 4 image is basically targeting panda, so that's ok12:24
bernard_please take this as a vote to enable console by default :)12:25
bernard_the kernel can be booted with quiet, so as to not slow down boot, and then a getty put on the terminal12:25
rsalvetiyeah, I don't see why we can't at least enable a valid getty for it12:26
bernard_that would rock12:27
bernard_a way to append to bootargs without having to edit the SD card would be awesome too!12:27
ogra_acwont happen unless you convince TI to add NAND12:27
ogra_acthere is no ways to save them12:27
bernard_i want to be able to override from u-boot (mainly for dev)12:28
bernard_e.g. trying to figure out what args to pass to the kernel to get video working how i want12:28
rsalvetiiirc sakoman was working in a way to save the env somewhere else than nand12:28
ogra_acif you add the above console= parameter to treh cmdline *before* first boot it will set up a serial console for you automatically12:28
rsalvetidon't remember if it was just emmc though12:28
ogra_acyes, we might switch to a raw partition intead of vfat in natty12:29
rsalvetiogra_ac: did you test that, because the all cmdline arguments kernel patch to init was applied later on12:29
ogra_acthat way you can treat iut like NAND and have some area to saveenv to12:29
rsalvetiand we had to create a different uImage for blaze at least12:29
ogra_aciirc jasper parses /proc/cmdline still12:29
ogra_acso the kernel patch shouldnt be needed12:30
rsalvetihehe, some files parse /proc/cmdline and other don't12:30
rsalvetiogra_ac: but why can't we just enable the getty for uart by default?12:30
ogra_aci will have to check the code12:30
rsalvetiI mean, for natty12:31
ogra_acrsalveti, see the jasper-rewrite spec ...12:31
ogra_acwe will if upstart allows it12:31
ogra_acit has to happen there12:31
rsalvetiyeah, it's hardware specific =\12:31
ogra_acfor x in $(cat /proc/cmdline); do12:32
ogra_ac    case ${x} in12:32
ogra_ac        console=tty[A-Z]*)12:32
ogra_acso the kernel patch shouldnt matter12:32
ogra_acbut its essential to do it before first boot12:32
rsalveticool12:32
rsalvetiyep12:32
bernard_i found it a little bit creepy that the first boot modified the system and then rebooted. what does it do?12:33
ogra_acall things the debian-installer would do otherwise12:34
rsalvetibernard_: mainly resize the sd card12:34
bernard_ah, fair enough12:35
ogra_acit also sets up the board specific stuff12:36
ogra_acit will change a lot in next release, but the resizing will have to stay12:37
bernard_oh, so an interesting bug report - when I dd'd the image to my SD card, the ext3 partition wasn't where it was supposed to be.12:38
bernard_running "file - < /dev/sdb2" just reported "data"12:38
bernard_i ended up running mkfs and copying the files in manually from the image.12:39
ogra_acthats why the resizing bit is there12:39
ogra_acyou shouldnever tinker with it after dd12:39
bernard_the image didn't even boot though, because the partition table was pointing to the wrong place.12:39
bernard_i'm not sure what it was about the SD card, but i can dig deeper tomorrow morning (in about 9 hours, here)12:40
ogra_acits a 4G or bigger card, right ?12:41
bernard_4G SD card, yep12:41
* ogra_ac only has heard of probs if people didnt stick to the minimal card size12:41
bernard_dd didn't complain, cmp against the ungzip'd image matched.12:42
bernard_i didn't dig much deeper at the time, but i can have another look in the morning.12:42
ogra_acoh, you gunzipped12:42
ogra_acrit, you said dd ...12:42
ogra_acjust use zcat ;) dont waste your diskspace12:43
bernard_to write the image, i did 'zcat foo.img | dd of=/dev/sdb'. to do a compare, i had to unzip, and then did 'cmp foo.img /dev/sdb'12:43
ogra_acthats completely worng12:45
ogra_acwhich install doc did you follow12:45
ogra_achttps://wiki.ubuntu.com/ARM/OMAP12:46
bernard_i was following what i normally do for writing images to media, not the instructions, sorry!12:47
bernard_is there really a difference between piping to dd of=/dev/sdb and using > /dev/sdb ?12:47
ogra_acno idea, i never tested, but the instructions on the wiki were tested by many people12:48
bernard_the wiki also says that if the > method doesn't work, to gunzip and dd instead.12:48
ogra_acwe usually do quite some QA before releasing something ;)12:48
ogra_achrm, wo added that12:49
bernard_maybe there is something crazy about my sd card. i really can't see why they should differ.12:51
bernard_as i said, i'll reproduce it tomorrow and find out where exactly the image went.12:51
bernard_will anyone here be awake in 9 hours? ;)12:53
rsalvetiberco: sure12:53
rsalvetiops12:53
rsalvetibernard_: sure12:53
bernard_cool. so i'm not in the craziest timezone!12:54
lilstevieheh 9 hours == business hours12:56
=== tmzt is now known as tmzt_dg2root
=== lilstevie is now known as lilstevie|ZNC
bercoogra: hi!14:44
bercoogra: can you please enable natty on our PPA?14:44
ogra_achey berco14:44
davidmjayabharath, do you have any beyond repair Panda boards?  I need something to test size and spacing with.14:44
ogra_acberco, did you ask in #launchpad ?14:45
davidmjayabharath, completely dead is perfect if you have any.14:45
* ogra_ac doesnt know why that wouldnt happen automatically14:45
jayabharathYes I think we have a couple sitting in our office... will 1 or 2 board do?14:45
bercoogra_ac: I think I did last week but never got a real reply14:45
bercoogra_ac: maybe everyone was at UDS/ELC...14:45
ogra_acor plumbers :)14:46
davidmjayabharath, 2+ is a perfect amount of boards, 1 is better then nothing. :-)14:46
bercoogra_ac: I thought it was you. Shall try again on #launcpad?14:46
davidmjayabharath, 2+ allows me to test spacing for the 19" rack case14:46
ogra_acask for a LOSA (launchpad admin)14:46
jayabharathI have 1 in my office. I do know we burned one more board recently.. so we can give 2 boards to you. How can we get them to you14:46
davidmjayabharath, I am more then happy to drive over to the TI offices to pick them up14:47
jayabharathok great.14:47
davidmjayabharath, thanks, that will really help me with the layout of the 19" case and cable assemblies, just let me know when to come get them.  Thanks again.14:48
jayabharathI will get my hands on the boards this morning and will email you. You can drop by anytime after 3.30pm today14:49
davidmjayabharath, perfect, wow it's coming together nicely14:49
jayabharathnice14:49
rsalvetiogra_ac: told you that they never tested qt neon autodetection on a non neon capable machine15:39
rsalvetiit's now an upstream bug15:39
rsalvetieven affecting natty15:40
ogra_acyeah15:40
rsalvetigood that this also affects meego15:40
ogra_acdo you think that will be solved soon with a suitable patch for maverick ?15:40
ogra_acelse i'd prefer to do the static build again15:40
rsalvetilet's wait until tomorrow's eof15:41
rsalveti*eod15:41
ogra_aclike if it takes months it doesnt help much in maverick15:41
ogra_ack15:41
rsalvetiif not, at thursday we just push the disabled neon version for maverick15:41
ogra_acwell, i'm fine even waiting another week or so15:42
rsalvetithe bug is critical, but then I saw that most qt bugs are critical hehe :-)15:42
ogra_acjust not months15:42
rsalvetiok then, let's wait at least this week then15:42
=== apw` is now known as apw
prpplaguedavidm: ping16:53
davidmprpplague, good morning16:53
prpplaguedavidm: greetings earthling16:53
davidmby the by the AC100 is 19 V16:53
prpplaguedavidm: i haven't seen an email come across by inbox, just curious if you are still working on the project?16:54
prpplaguedavidm: ahh interesting16:54
davidmYes you might want to have a look at: https://blueprints.launchpad.net/ubuntu/+spec/other-arm-n-public-panda-ppa-build-cluster16:57
hrwdavidm: let me guess: 19V 2.1A?16:57
davidmWhere I have the beginnings of the documentatation16:57
davidmNope 1.5x 30W16:57
davidmNope 1.5xA 30W that is16:57
davidmTiny16:58
davidmThe wiki page has some ASCI art on the relay schematic16:58
davidmVery rough16:58
davidmI'm coming by TI today to pickup 2 dead panda boards so I can do sizing and such16:59
davidmI will then take some perfboard and make "daughter" cards to size16:59
davidmand make up my "10" stack for sizing into the 19" rack case17:00
prpplaguedavidm: ok, i'd like to show you something when you come by17:00
hrwhave a nice rest of day17:01
=== hrw is now known as hrw|gone
prpplaguehrw|gone: later17:02
davidmprpplague, OK I'll mention that to jay when I come in.17:03
prpplaguedavidm: i have something that might slightly impact your physical format17:03
prpplaguedavidm: but would make things a little easier to work with17:03
davidmI'm not sure how to bias the transistor so the relay will latch and not sure what pin to use to poke it for unlatching17:04
davidmprpplague, cool17:04
ogra_aceasier ++17:04
ogra_ac:D17:04
devilhornsogra_ac, !!!! :P17:04
* prpplague is still tinkering with a netbook interface kit for the pandaboard17:05
davidmprpplague, the transistor must allow latching with the panda board hard off (no power applied)17:05
prpplaguedavidm: yea looking over your diagram now17:05
davidmprpplague, please be gentile remember its ascii art ;-P17:06
prpplaguedavidm: np, let me work through the logic and create a schematic over the next few days17:07
davidmOK17:08
prpplaguedavidm: here is the relay i suggest using - http://www.mouser.com/ProductDetail/NEC/UB2-3NU/?qs=c5n%252bvICFHOa2OX6vjaAytg%3d%3d17:08
prpplaguedavidm: low noise, surface mount and is available in several different coil configurations17:08
davidmprpplague, the URL shows coil voltage at 3V will 5V damage it?17:09
davidmOr is that the min pullin voltage?17:10
prpplaguedavidm: it is available in a wide range of coil voltage configurations, that just happens to be the 3V nominal part17:10
prpplaguedavidm: http://www.mouser.com/Electromechanical/Relays-I-O-Modules/_/N-5g31?Keyword=UB2&FS=True17:11
davidmCool, then we are good with 5V, perfect17:12
davidmYEs, I like that relay, nice17:12
rsalvetiogra_ac: the problem is not only the kernel tree development, it's more the long term maintenance of it17:54
rsalvetiI know the linaro folks will integrate most ubuntu sauce and stable fixes17:54
rsalvetiso I believe we'll be ok for the release, but don't know then how the long term maintenance will work17:55
ogra_acas long as the config is fine17:55
ogra_acwe might need a different config from what linato wants to use17:55
ogra_ac(more drivers)17:55
rsalvetithat's ok17:55
rsalvetiwe'll have some kind of linaro-ubuntu tree17:56
rsalvetiand we can use the config we want at the package level17:56
ogra_acright, so security and version alignment is our only issues17:59
rsalvetiok, at least for omap 3 I believe we'll be fine18:02
ogra_acright18:02
rsalvetiI'll also help on what I can to make sure we have a good working kernel for it18:02
ogra_aci'm more concerned about possible upcoming platforms18:02
rsalvetimy concern is if we get the same kind of request for other hardware vendors18:02
rsalvetiyup18:02
rsalveti:-)18:02
rsalvetithis shouldn't be a common solution18:03
rsalvetiomap 3 will be maintained this way because it's important for the community18:03
ogra_aceven demoting omap3 to a community image if we cant get security would be fine by me18:03
rsalvetiyeah18:03
ogra_acbut not for possible other arches18:03
ogra_acif we have commitment we need to support them18:04
rsalvetisure18:04
prpplaguedavidm: ok i follow the ascii art but it needs some cleanup and conversion into a proper schematic18:29
prpplaguedavidm: i'll start work on that18:29
prpplaguedavidm: have you prototyped the circuit yet?18:30
davidmprpplague, nope, I've done the latching side many many times, but first time with a transistor to drop it18:36
davidmThe prior cases I used a mechanical switch to open the relay18:37
davidmdifferent use case18:37
prpplaguedavidm: ok, i'll do a prototype setup along with the schematic18:38
davidmBy the by I'll be at TI about 3PM today18:38
prpplaguedandy18:38
davidmI'll call Jay for an escort18:38
prpplague:)18:38
davidmDo you have a suggestion on what GPIO pin might be safest to use?18:39
prpplaguedavidm: generally speaking they will be about the same, but i'd want to read over the x-load code for blaze/sdp/panda to see if there are any commonalities that might create problems18:41
prpplaguedavidm: i'd probably suggest using GPMC_AD13 as an initial item, which is on the secondary expansion header18:42
prpplaguedavidm: this leaves the other ones untouch incase you need to rev the board for other features18:42
davidmprpplague, OK that works, thanks.  I figure you know the board better then I do.18:43
prpplaguedavidm: i should be able to get some quick turn boards for the relay section one week from today18:44
davidmI have some prototyping boards here I can breadboard if that helps18:48
davidmThat was what I was going to do anyway18:48
prpplaguedavidm: naw, this will be quick turn boards with the correct footprints and everything18:56
prpplaguedavidm: basically flush out any issues with the schematic and such18:56
davidmWorks18:57
=== JaMa is now known as JaMa|Off

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!