[00:01] OK, so I built 3.0 with "make deb-pkg" on hardy, and it gave stripped packages. So I guess the builddeb script as at 2.6.32 is just too stupid to do that :-/ [00:01] I don't really wanna go back to make-kpkg [00:07] Actually make it wasn't stripped, I only looked at the .deb size (5MB instead of 150MB), but that might just be because I used defconfig instead of the allmodconfig-esque ubuntu .config [00:10] not stripped. [00:11] Aaand nor are the .ko's in my personal ones, so "make deb-pkg" doesn't normally strip, either. Mea culpa. [01:05] OK, it turns out to be simple -- pass INSTALL_MOD_STRIP=1 to build and then strip, or unset CONFIG_DEBUG_INFO in your .config to avoid building debugging symbols in the first place. [01:05] The former is handy if you want to go back and "make debug-package" or so (can't remember the exact target name). [02:21] how can i debug an acpi problem? [06:04] hi. I'm trying to rebuild the latest hardy kernel package. I've got the .dsc, I've changed what I wanted, then uploaded it to my ppa, but it doesn't build: https://launchpadlibrarian.net/83147123/buildlog_ubuntu-hardy-i386.linux_2.6.24-29.94~cemc111019~ppa1_FAILEDTOBUILD.txt.gz . it's complaining about some missing ABI files. I have no idea what I need to do. never messed with a kernel package before. any pointers would be appreciated [06:33] hi, I have a question about Ubuntu 11.10 on EC2: is it possible to use transparent hugepages in the latest cloud kernel? the /boot/config-* file says that CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y, and I have an application that uses madvise with MADV_HUGEPAGE, but I don't see any AnonHugePages created in /proc/meminfo === smb` is now known as smb [07:21] cemc, Probably https://wiki.ubuntu.com/KernelTeam/KernelMaintenance#ABI is closest to help [08:20] hi, does the kernel bugzilla work again? [08:21] Does not seem so [08:24] bummer, i would like to have a look at http://bugzilla.kernel.org/show_bug.cgi?id=36152 to fix bug 706039 [08:24] Launchpad bug 706039 in isight-firmware-tools "Can't produce data in UYVY" [Undecided,Confirmed] https://launchpad.net/bugs/706039 [08:25] sroecker: Error: Could not parse XML returned by bugzilla.kernel.org: timed out (https://bugzilla.kernel.org/xml.cgi?id=36152) [08:59] smb: thanks! [09:00] bah everyone i go to answer has always gone, so frustrating [09:01] apw, Was that the hugepage question? [09:01] yeah [09:01] actually and one futher up in scrollback ... sigh [09:01] Has been gone almost immediately after asking [09:02] moin [09:02] (well almost a bit strechted) [09:02] moin [09:03] apw, Actually you could answer me, I am not completely sure. Would say it should work, even finding some old information that it may depend on the hypervisor, too. [09:04] i would think it is very dependant on the hypervisor supporting it, as it would need to support the PTE formats etc [09:05] Right, so ec2 actually may not work as they are on 3.4.x at most [09:06] and even if it is available at the hypervisor i would expect it to be a configurable option and probabally off by default [09:06] Found some 2yr old info about required boot arguments for the hypervisor and guests, but those did not appear in the current wiki. Which could mean the wiki is incomplete or the option is gone.. [09:07] yeah, i presume you can tell from the proc/cpuinfo cpu flags that xen gives you [09:08] it also depends on xen giving you contigious physical ram, and i am not sure it does that either by default [09:09] smb, cifs is the in kernel samba implementation i think right? [09:09] apw, well the sort of guest part I think [09:10] right that bit yes [09:10] do you have a samba server on the network your hardy box is on ? [09:10] * apw has a cve which i wonder if anyone can reproduce on hardy [09:11] apw, Yes, the test system can access it [09:11] so the bug in theory is you use cifs to mount it, then you use another user to mount it but without a password, and it "reuses" the password the kernel already has allowing the second user access too [09:12] I guess I can give it a try... [09:13] if you have time that would rock, as i have a patch for it, but who knows if it works [09:13] apw, any preference on 32 or 64 bit? [09:14] no specification either way in the bug, so i assume it is generic [10:04] apw, Ok, so it seems to incorrectly work as you described it [10:04] that is awsome [10:05] smb, you 32 or 64 bit [10:05] apw, 64bit [10:05] I am attempting to build a new flavour of ubuntu kernel (oldstyle/xenlinux xen, for 3.3 hypervisor). My kernel builds fine, but as it makes a vmlinuz not a bzImage, it doesn't package. I can see there are bits in debian.master/rules.d to control this on a per arch basis (though I don't understand them). How do I control on a per flavour basis? [10:06] alexbligh, how are you triggering the build [10:07] fakeroot debian/rules binary-myflavour [10:07] alexbligh, the output file requested is controled by the debian./rules.d/.mk file [10:07] right, but arch is amd64. I only have a flavour. Or do I need to do a whole new arch? [10:07] install_file = vmlinuz [10:08] isn't a vmlinuz a bzImage anyhow ? [10:08] its not an x but a z [10:08] The XEN patches cause it not to produce the bzImage. [10:08] No, I don't think they are the same [10:09] build_image = bzImage [10:09] At least not according to the debian patch which says "we can't load a bzImage so load a vmlinuz for now" [10:09] have you changed tha t? [10:09] kernel_file = arch/$(build_arch)/boot/bzImage [10:09] and indeed that ? [10:09] You mean in debian.master/rules.d/amd64.mk? [10:09] yep [10:10] I haven't changed that file at all, because I wanted amd64 to continue to build. I only wanted the targets to change for my flavour. [10:10] i am pretty sure we have the same problem with powerpc in older releases [10:10] * apw isn't sure you can do that [10:10] ok. that's not the end of the world. [10:10] so build_image should be vmlinuz [10:10] alexbligh, we don't normally want to make the originals when we make a derived branch like that [10:10] install_file should be vmlinuz (as it is at the moment) [10:11] and kernel_file should be what? [10:11] build_image should be what you type when you type make in a native tree [10:11] vmlinuz [10:11] kernel_file should be whatever it makes when it builds it when you do that :) [10:11] its a bit of a guessing game [10:12] Kernel: arch/x86/boot/vmlinuz is ready (#2) [10:12] that then :-) [10:12] yeah that sounds about right [10:12] apw, thanks [10:12] np === gema_ is now known as gema === lag` is now known as lag [12:53] * apw notes that you are all going to get a spurious v3.1-rc10 build announcement ... i hope [13:31] herton, bjf: just fyi http://people.canonical.com/~ubuntu-archive/pending-sru appears to mention there is a separate report for our kernel SRU's, but the url it points to is invalid, ie it points to http://people.canonical.com/~ubuntu-archive/pending-sru [13:32] herton, bjf: bah, http://kernel.ubuntu.com/~kernel-ppa/reports/sru-report.html is the invalid url location [13:32] ogasawara: nice, it actually points to the ~kernel-ppa location where it used to be [13:32] ogasawara: i'll mention it to pitti [13:33] bjf: yah, didn't know if you wanted to set up a re-direct to get pitti to fix it [13:33] ogasawara, it's been broken forever so not many people must be using it [13:42] ogasawara: pitti has fixed his script and it will be fixed in the next update [13:43] bjf: cool [14:12] * ogasawara back in 20 === ericm|ubuntu is now known as ericm-Zzz [15:43] apw: ogasawara: did you saw this error before when uploading to c-k-t ppa? Changes file must be signed with a valid GPG signature: Verification failed 3 times: ['General error', 'General error', 'General error'] : Permission denied. [15:43] I'm trying to upload the new linux-lts-backport-oneiric, the packages were signed by bjf [15:43] I already uploaded packages signed by him and it went ok, may be the fact the package is new has something to do with it [15:45] herton, whether new or not should not matter. maybe the signage key was accidentally not the one in lp...? [15:46] smb: nope, the key is ok, matches the lp one [15:46] I think if it's the first upload of the new package, you might new core dev privs to do so? I swear I might have hit something similar doing lbm at one time [15:46] herton: I think I had to have tgardner do the first upload, and after that I was ok [15:47] ogasawara, herton Oh, maybe right because its new new (as not in the upload rights list) [15:47] smb: yep [15:47] ogasawara: hmm ok, only tim is core dev? [15:47] yep [15:48] herton: and I think he's out until UDS? [15:48] but you could ask cjwatson to add the package to the list I guess [15:50] calendar shows him on vacation until this friday. I'll ask cjwatson if he can see this [15:52] smb, looks like tim's "hit by bus" rule applies here, we should probably get apw and ogasawara and maybe yourself as core dev ? [15:52] smb, need more than one [15:52] bjf, Yeah, me and apw have it on our list... Just always seemed "too hard" [15:53] smb: yah, seems like a lot of extra work for not much more gain [15:56] herton: have you gone before the DMB yet to get your kernel upload rights? [15:56] * ogasawara meant to ack your application [15:57] ogasawara, he hasn't yet [15:57] ogasawara: I'm with my application ready, but the October 24th date is a not good one, since tim may be is away and sconklin too, and the timing is not good, I was thinking of sending the application for the meeting after [15:57] october 24 [15:58] cool [15:59] herton, now try to upload lts-backport again... [16:00] smb: still the same [16:01] Hm, bjf what is your lp username again? [16:01] smb: brad-figg [16:10] bjf, OK seems solved... It was only a fake error. And our upload rights actually do not matter as everything goes via ppa. But I guess it does not hurt if our package uploader rights mtach what damage we could do via the ppa [16:11] yeah, the builds are showing on c-k-t ppa despite the error, so should be ok [16:55] bjf, jsalisbury: are you guys going to want to have an official UDS kernel bug session, or can we just chat over a pint of beer at the bar [16:56] ogasawara: beer! [16:57] heh, I probably didn't even need to ask :) [17:01] ogasawara, beer works for me :-D [17:01] ogasawara, bjf or both [17:02] ogasawara, jsalisbury, don't need a session [17:02] bjf, ok [17:08] apw: before I forget again, we're planning on sticking with the 3 digit version scheme for Precise right? [17:10] i think its likely, we should think about it at UDS and check before we upload 3.2 [17:11] apw: yep, I pretty much forced us to the 3 digit when I uploaded 3.1.0 yesterday, but am banking on the fact we'll be using at least 3.2 [21:03] ogasawara, bug 876996 looks like a regression that prevents an install/upgrade of Oneiric [21:03] Launchpad bug 876996 in linux "Ubuntu 11.10 fresh install crashed" [High,Triaged] https://launchpad.net/bugs/876996 [23:10] ogasawara: can you reset bug 871899? I wrongly set the kernel verification task as completed [23:10] Launchpad bug 871899 in kernel-sru-workflow "linux: 2.6.32-35.78 -proposed tracker" [Undecided,In progress] https://launchpad.net/bugs/871899