Commit Graph

378 Commits (7c642e4da3bd82757c043c833f0ca1cda8c17819)

Author SHA1 Message Date
Andrew Gaffney 1c9596c37e Fix another quoting malfunction
17 years ago
Andrew Gaffney 520f70fd8d Explicitly enable MDADM and MDSTART in busy-config
17 years ago
Andrew Gaffney 6f9764a330 Update busybox static-error patch to actually work
17 years ago
Chris Gianelloni 96f11b125f Change BUSYBOX_VER to VERSION_BUSYBOX for genkernel-9999 ebuild.
17 years ago
Andrew Gaffney bad7c471f2 Remove the quotes when trying to expand a glob
17 years ago
Andrew Gaffney 182fd5e831 Update mdadm and mdstart patches
17 years ago
Andrew Gaffney 2ed29757ef It helps if we assign the correct value to version
17 years ago
Andrew Gaffney 6a3fb94230 Add busybox patch to remove error about compiling statically
17 years ago
Andrew Gaffney ae01c22edb Update busy-config files for the various arches for busybox 1.7.4
17 years ago
Andrew Gaffney e86db7cf2c Add apply_patches() function to automagically apply patches for a given util
17 years ago
Chris Gianelloni c7a57d7830 Rearrange checks so the return value is read correctly.
17 years ago
Andrew Gaffney bfd3e14a07 Enable CONFIG_HEXDUMP globally for busybox
17 years ago
Andrew Gaffney 7fab7bb1f9 Add support for --firmware-files option to make robbat2 happy
17 years ago
Andrew Gaffney 6ea20790b7 Add support for --firmware and --firmware-dir options to include firmware in the initramfs
17 years ago
Andrew Gaffney c1c0655dbb Apply patch from Vince C <v_cadet@yahoo.fr> to mount sysfs prior to loading modules, so that the mdev firmware loading can actually work
17 years ago
Chris Gianelloni f62aa7b1c9 If we have a raid456.ko module, we need to create a raid45.ko symlink since dmraid can be rather stupid. This should resolve bug #195804.
17 years ago
Chris Gianelloni 39f1ad891b Updated the kernel configs for arches which have given us their 2008.0 configs. This is 3.4.10_pre4 for testing.
17 years ago
Andrew Gaffney 063e926d27 Redirect which output to /dev/null and put quotes around var in test
17 years ago
Chris Gianelloni a0766808eb Changed MDRAID to MDADM for bug #211316.
17 years ago
Chris Gianelloni 89f860a323 Added a --no-keymap option for bug #210886.
17 years ago
Chris Gianelloni ee2c236875 Use which to determine the location of splash_geninitramfs, rather than having an endless number of conditional checks for the location. This fixes bug #211521. Thanks to Uriy Zhuravlev <stalkerg@gmail.com> for finding the problem and suggesting a solution.
17 years ago
Chris Gianelloni 35fffff3a5 Removing the xen0 and xenU arches, since they didn't work, anyway. This is genkernel 3.4.10_pre3 for testing.
17 years ago
Andrew Gaffney a8cef1efa5 Add missing space before closing ]
17 years ago
Andrew Gaffney 2c41576da4 Apply patch from bug 210457 to fix variable substitution. Thanks to Paul Taylor <birder@ozemail.com.au> for reporting
17 years ago
Andrew Gaffney 7f20c816c3 Remove quotes from around ${ROOT_TREES} so that the dirs are parsed separately by bash/cp
17 years ago
Chris Gianelloni 58c13464ec Removing DEVFS support from genkernel since we don't support 2.4 kernels anymore. This is 3.4.10_pre2.
17 years ago
Chris Gianelloni a98d5330f0 Added a line to make sure we remove image.squashfs as well as the other loop names used by catalyst.
17 years ago
Chris Gianelloni df4dd021ab Added another patch from Javier Miqueleiz <javier@miqueleiz.com> in bug #198892 for mdadm 1.1 and 1.2 metadata support.
17 years ago
Chris Gianelloni ad4cd03394 Switch to detection for LOOP and LOOPTYPE when they are not set.
17 years ago
Chris Gianelloni 5b462be907 Performed some minor cleanup.
17 years ago
Chris Gianelloni 239e46b186 Move busybox --install -s to outside the /init check. Fix problems with running mknod on a non-CD root filesystem, which will be read-only, for bug #208266.
17 years ago
Chris Gianelloni bf2072c742 Removing 2.4 kernel configs, since we aren't supporting 2.4 from here on out.
17 years ago
Chris Gianelloni 957c60e41d We only need to make sure that we have /sbin and /usr/sbin in our PATH for bug #97378, not reset it. Thanks to Justin Bronder <jsbronder@gentoo.org> in bug #209182 for pointing it out. This is genkernel 3.4.10_pre1 for testing.
17 years ago
Chris Gianelloni a479c34552 This is the long-awaited unionfs code cleanup. All of the unionfs code in genkernel has been removed.
17 years ago
Andrew Gaffney 74ebf6cd74 Fix two calls to set_config_with_override on CMD_KERNCACHE and some indentation weirdness
17 years ago
Andrew Gaffney 4cde424af9 Change &>/dev/null to >/dev/null 2>&1 because busybox ash sucks
17 years ago
Andrew Gaffney c5bcb8d178 Switch to double quotes where we're interpolating variables, because I suck
17 years ago
Andrew Gaffney 23c3235aa1 Add qla2xxx to sparc64's MODULES_SCSI
17 years ago
Andrew Gaffney 050a1da1d2 Add --all-initrd-modules option to copy all kernel modules into initrd/ramfs. This is useful for netboot images
17 years ago
Andrew Gaffney 6c98ac18d3 Add setup_hotplug() function that runs before the modules are loaded to setup mdev as the hotplug event handler
17 years ago
Andrew Gaffney 5f3bff37d1 Clean up OLDCONFIG logic and default to OLDCONFIG=yes. This is for bug 207895
17 years ago
Chris Gianelloni 4faaee5d40 Moving the code to start resume operations so it doesn't run when booting from CD. We also don't execute the code if there's no real_resume set on the command line, since it will fail, anyway, without it.
17 years ago
Andrew Gaffney b861813ae6 add megaraid module to MODULES_SCSI for bug 206039
17 years ago
Andrew Gaffney 226a52cfeb specify the kernel version when looking for a module for bug 208593
17 years ago
Chris Gianelloni 2df80062d6 Removed runUdev, since we no longer use it.
17 years ago
Chris Gianelloni 37ef3eb473 Fixing a problem where we were copying the busybox binary cache into the busybox temporary directory. I am assuming that this was a result of all of the changes we've been doing, and it simply just got everlooked. Thanks to Marek Szuba <cyberman@if.pw.edu.pl> for pointing it out in bug #204087. This is genkernel 3.4.9 FINAL. Enjoy.
17 years ago
Andrew Gaffney 07397c6100 don't scan a bunch of extra devices when CDROOT_DEV is defined
17 years ago
Andrew Gaffney 783f92f592 add new cdroot_type=foo kernel commandline parameter to override -t iso9660 for bug 182818
17 years ago
Andrew Gaffney 9710e24c34 put -t auto back to -t iso9660 for mounting a cdrom. this is for bug 162962
17 years ago
Andrew Gaffney a8c95a49f7 fix description of --kernel-config for bug 194752
17 years ago
Chris Gianelloni 69500d6738 This is 3.4.9_pre12 for testing.
17 years ago
Andrew Gaffney 8ac539106b apply LUKS key patch from bug 162962 from Nelson Batalha <nelson_batalha@hotmail.com>
17 years ago
Andrew Gaffney ccc3c9c78f fix text bolding on serial console for bug 202266 thanks to Michael Hordijk <hoffbrinkle@hotmail.com>
17 years ago
Andrew Gaffney 5ea7a1432f apply patch from John R. Graham <john_r_graham@mindspring.com> for bug 201482
17 years ago
Andrew Gaffney f86c24efb6 s/KERNELDIR/KERNEL_DIR/ for bug 201159
17 years ago
Andrew Gaffney 0e8907e131 fix typo for bug 201442. thanks to Michael Hordijk <hoffbrinkle@hotmail.com>
17 years ago
Chris Gianelloni 9e3f3a4292 This is genkernel 3.4.9_pre11 for testing.
17 years ago
Andrew Gaffney 20d54c9c00 s/elsif/elif/ because I use too many languages and random bash tutorials online can't be trusted
17 years ago
Chris Gianelloni 0815924a54 Added a patch line for busybox for bug #198892. This is 3.4.9_pre10 for testing.
17 years ago
Chris Gianelloni 9980cfc539 Added a small patch from John R. Graham <john_r_graham@mindspring.com> to fix arguments with spaces for bug #200161.
17 years ago
Andrew Gaffney f59adb569b use 'read' to get a line at a time to account for directories with spaces in the name. this fixes bug 199701
17 years ago
Andrew Gaffney cce65ad98c look for cryptsetup in /bin and /sbin
17 years ago
Andrew Gaffney 9f3580937c Force dmraid to be built with -j1 for bug #188273
17 years ago
Chris Gianelloni ed0fccb682 My original sed of LVM2->LVM caught a few too many things. Thanks to Robin Johnson <robbat2@gentoo.org> for pointing them out and providing the fix in bug #198546.
17 years ago
Chris Gianelloni 626db701e2 ChangeLog fix/version fix.
17 years ago
Chris Gianelloni dfdb2b91ae Added config defaulting for --mdadm for bug #198694. Thanks to John R. Graham <john_r_graham@mindspring.com> for providing the patch. This is 3.4.9_pre9 for testing.
17 years ago
Andrew Gaffney cb5712f1f6 revert patch from bug 190327
17 years ago
Chris Gianelloni fba39b8f11 Added a nice patch from John R. Graham <john_r_graham@mindspring.com> to allow all command line options to be configurable from within the genkernel.conf file. This is for bug #182616. This is genkernel 3.4.9_pre8 for testing.
17 years ago
Chris Gianelloni dcb5af3f6f Fixed the noload module code. Thanks to Mijail Fedorovich <mfedorovich@gmail.com> for pointing it out in bug #198187.
17 years ago
Chris Gianelloni ae13885cdf Added an update patch from Alon Bar-Lev <alonbl@gentoo.org> in bug #197244 to clean up the suspend2 code and rename the functions to tuxonice to match the upstream rename.
17 years ago
Chris Gianelloni d0667a6beb Added a patch from Joshua Kinard <kumba@gentoo.org> to clean up the Pegasos hacks in genkernel. This is from bug #193826. This is genkernel 3.4.9_pre7 for testing.
17 years ago
Chris Gianelloni 77598a72d7 Added a simple patch from Andrew Gaffney <agaffney@gentoo.org> to ensure that we export ARCH before running menuconfig. This is from bug #190327.
17 years ago
Chris Gianelloni a935750c44 Make sure we still allow dolvm2/doevms2 on the kernel command line and give a warning. I've also added a 2 second delay between vgscan and vgchange. Thanks to Robin H. Johnson <robbat2@gentoo.org> for suggesting the changes and testing.
17 years ago
Chris Gianelloni d9cffe7d03 Reverting the removal of generic/modprobe for bug #197730. This is genkernel 3.4.9_pre6 for testing.
17 years ago
Chris Gianelloni 943ce2047b Fixed device-mapper/man removal for bug #196087, fixed mdadm.conf copying, and fixed syntax error for bug #197582. This is genkernel-3.4.9_pre5.
17 years ago
Chris Gianelloni c239493fcd Added a patch from Alan Hourihane <alanh@fairlite.demon.co.uk> for mdadm support in busybox from bug #172128. This is genkernel 3.4.9_pre4 for testing.
17 years ago
Chris Gianelloni 76b0593f47 Made a few minor cleanups here and there.
17 years ago
Andrew Gaffney b536430a15 update description for --initramfs-overlay in man page to match --help
18 years ago
Andrew Gaffney f29f8e3282 remove generic/modprobe and all supporting code, since busybox has modprobe
18 years ago
Andrew Gaffney b1f27004bb cd out of directory to be deleted for bug 194695. Thanks to Asmund Grammeltvedt <asmundg@big-oil.org> for pointing this out
18 years ago
Andrew Gaffney 2dd522a1ed we don't ever want devfs in an initramfs
18 years ago
Chris Gianelloni 62b6035d2a Rename DEBUGLEVEL/DEBUGFILE to LOGLEVEL/LOGFILE to help reduce confusion.
18 years ago
Chris Gianelloni 4005d85692 Some more generalcleanup and adding support for using a config file other than /etc/genkernel.conf to add flexibility.
18 years ago
Chris Gianelloni 2716ac4dc2 Removing klibc/modutils/module-init-tools files, since we don't need any of them, anymore.
18 years ago
Chris Gianelloni 2de4a9cd8f It helps if I use 'g' when doing a sed.
18 years ago
Chris Gianelloni 2ab02c410b Removed the use of GK_BIN variable, since it isn't necessary.
18 years ago
Chris Gianelloni 3c0bcf90c9 Updated TODO and cleaning up genkernel.conf a bit.
18 years ago
Chris Gianelloni 9e69a8a871 Remove some unnecessary copyright dates from a few files so we don't keep forgetting to update them when we modify the files.
18 years ago
Chris Gianelloni 208a983055 Renamed gensplash to splash and marked gensplash as deprecated. This is 3.4.9_pre3 for testing.
18 years ago
Chris Gianelloni 10990c2210 Changed all instances of EVMS2/LVM2 to EVMS/LVM, respectively. This will keep everything simplified if a newer EVMS/LVM version set appears.
18 years ago
Chris Gianelloni 364336c8dc Removing bootsplash support since it hasn't been in a kernel we've supported for years now, causes confusion amongst users, and really wasn't being used and caused issues with 2.6/initrd creation in some corner cases.
18 years ago
Chris Gianelloni 0f60973912 Removing the reversal patch for the suspend removal, since it will no longer apply.
18 years ago
Chris Gianelloni 497d9f9297 Performed some general cleanup on a few files and removed devfs/udev selection code, since we force devfs on 2.4 and mdev on 2.6 kernels.
18 years ago
Chris Gianelloni c24a91d307 Removing the suspend support that was added for bug #156445 until suspend is added to the tree and we can determine the proper way to support it. For more information, see bug #156431.
18 years ago
Chris Gianelloni 7e8148c27c Removed CONFIG_PHYSICAL_START from the x86/amd64 kernel configs for bug #186378. This is genkernel 3.4.9_pre1 for testing.
18 years ago
Chris Gianelloni 17f9f93afa Changing to use console=tty1 instead of CONSOLE=/dev/tty1 with a patch from Matthias Schwarzott <zzam@gentoo.org> for bug #188954.
18 years ago
Chris Gianelloni bfec77e7d2 Added arcmsr to MODULES_SCSI for bug #185827.
18 years ago
Chris Gianelloni 24dc832d0b Added suspend-0.5-Makefile.patch to pkg directory for suspend capabilities, bringing it into the repository, from the tree.
18 years ago
Chris Gianelloni 739fc53353 Added a small patch from Tais M. Hansen <tais.hansen@osd.dk> to add doscsi to the genkernel man page for bug #183406.
18 years ago
Chris Gianelloni 91b2ac41fb Added another patch from John R. Graham <john_r_graham@mindspring.com> for bug #180161.
18 years ago
Robin H. Johnson 0257b72785 Cleanup of bogus error output.
18 years ago
Robin H. Johnson 43b1f3aa7e Fixup for bugs from patch in bug 174294.
18 years ago
Andrew Gaffney 94e9ac1630 enhanced netboot linuxrc from gustavoz
18 years ago
Andrew Gaffney 1bdb11467f enable CONFIG_INSMOD in all arch busy-config files
18 years ago
Andrew Gaffney 8befa2ea18 Patch to compare new config instead of the one left laying around in the kerncache dir. Thanks to Pat Double <gentoo@patdouble.com> in bug #179739
18 years ago
Andrew Gaffney f10cd4ee6a Patch to actually use busybox bincache. Thanks to Pat Double
18 years ago
Chris Gianelloni 4ccd40b121 Fixed lvm/evms code for initrd generation. Thanks to Vinny <vfuria@gmail.com> on bug #179480 for pointing it out.
18 years ago
Chris Gianelloni 51ba709e2c Added new PATA support from Paul Hewlett <paul@gccs.co.za> from bug #180111 and also created a separate MDRAID module group.
18 years ago
Chris Gianelloni 4cfc3f4bf8 Added a patch from Nelson Batalha <nelson_batalha@hotmail.com> from bug #174294 to enable the use of encryption on a CD and the location of a key.
18 years ago
Chris Gianelloni 505cb92dc6 Added two patches from John R. Graham <john_r_graham@mindspring.com> from bug #180161. This should fix bug #180161, bug #144703, and bug #150697.
18 years ago
Chris Gianelloni 29bf002711 Added USB Printer support for bug #176543.
18 years ago
Chris Gianelloni 9c26beee95 Change the check for /livecd when booting a CD to check for a file called livecd, rather than just the existence of /livecd, which should keep it from finding disks with a /livecd directory.
18 years ago
Chris Gianelloni 50bd523a88 Added a patch from Andrew Gaffney <agaffney@gentoo.org> from bug #174188 to fix a problem with the System.map file copying that was previously introduced.
18 years ago
Chris Gianelloni 55f2664dbe Added patch from Nelson Batalha <nelson_batalha@hotmail.com> from bug #172766 to add documentation for genkernel's LUKS features.
18 years ago
Chris Gianelloni 93fbc1102a Added patch from Nicolas Schlumberger <n.schlumberger@bluewin.ch> to create md devices with LUKS for bug #170753.
18 years ago
Chris Gianelloni 9a3d137f71 Reverting patch that was originally added due to bug #160333 due to the problems it caused on the 2007.0 release.
18 years ago
Chris Gianelloni 1558a8b42e Added a patch from Andrew Gaffney <agaffney@gentoo.org> to add System.map to the tarball for the minimal kernel package for bug #174188. This is also the 3.4.8 release.
18 years ago
Chris Gianelloni 9899e00ed9 Added mptsas to SCSI for bug #174130 and removing raid0/raid1/raid10/raid456 from DMRAID.
18 years ago
Chris Gianelloni 92542bf56c Commented out the checks on the sanity of lvm.conf since they were not quite working right. This should fix bug #173622.
18 years ago
Chris Gianelloni 62c3988a09 Added nb-busybox.cf to x86 on the request of Andrew Gaffney <agaffney@gentoo.org>.
18 years ago
Chris Gianelloni 4eafdd4fcf Added a change to force objdump output to be English for bug #173412 and rolling 3.4.7 final for the release.
18 years ago
Chris Gianelloni 403aa83b5c Added a patch from Daniel Drake <dsd@gentoo.org> to fix splash problems for bug #172562.
18 years ago
Chris Gianelloni f0e745bfd0 Some minor config file cleanup.
18 years ago
Chris Gianelloni 63a3dab6ca Added a second patch from John R. Graham <john_r_graham@mindspring.com> from bug #169383.
18 years ago
Chris Gianelloni fffb7ff9f9 Added raid456 to dmraid target for bug #172128.
18 years ago
Chris Gianelloni 480b08111f Changed LVM configuration detection to not error.
18 years ago
Chris Gianelloni 8dd43cbca8 Added joystick support to the default configuration for bug #171911.
18 years ago
Chris Gianelloni 26a7141b14 Before we copy lvm.conf, we run it through 'lvm dumpconfig' to make sure the config is valid for bug #156009. This is 3.4.7_pre5.
18 years ago
Chris Gianelloni ea58cd4576 Change the default CACHE_DIR from /usr/share/genkernel/pkg/%%ARCH%% to /var/cache/genkernel/%%ARCH%% for bug #148253.
18 years ago
Chris Gianelloni e1a47d6e7f Added libata to the MODULES_SATA list. This might be why SATA CD drives weren't working for us.
18 years ago
Chris Gianelloni 89c7fbdde5 Added a patch by John R. Graham <john_r_graham@mindspring.com> from bug #169383 to improve the --symlink option fairly significantly. This is going to be 3.4.7_pre4 and while I haven't tested this yet, it looks good.
18 years ago
Chris Gianelloni f06ba4e9e7 Fixed lib64 link for bug #168664.
18 years ago
Chris Gianelloni fe94247269 Update default kernel config with the current LiveCD config for 2007.0, which is built on 2.6.19, rather than 2.6.17 only.
18 years ago
Chris Gianelloni bf22432fd6 Added binary files back and updated busybox with a patch from Peter Alfredsen <peter.alfredsen@gmail.com> in bug #168599.
18 years ago
Chris Gianelloni a3b8bafa53 Removing binary files from pkg since they were corrupted during the CVS->SVN migration.
18 years ago
Chris Gianelloni c9302ee8fd Fixed up the man page for bug #168500 and bug #168719.
18 years ago
Chris Gianelloni d97296528e Moved the MAKEOPTS check to the top of the file for parisc, so it matches other architectures. This fixes bug #165494. Thanks to Andrew Gaffney <agaffney@gentoo.org> for finding the fix. I'm marking this as 3.4.7_pre3 for testing.
18 years ago
Chris Gianelloni 2eb1c706e6 Adding yet another patch from Fabio Erculiani <lxnay@lxnaydesign.net> from bug #152945.
18 years ago
Chris Gianelloni bccc5d8fa7 Added a non-braindead version of a patch provided by Fabio Erculiani <lxnay@lxnaydesign.net> in bug #160333. This is completely untested, so I'm rolling up 3.4.7_pre2 to get it tested prior to genkernel 3.4.7 going final.
18 years ago
Chris Gianelloni b7c6720557 Add a known-working 2.6.16+ kernel config from http://www.ppczone.org/downloads/config-2.6.16-pegasos for bug #165758.
18 years ago
Chris Gianelloni 913c39a0fd Added a note about the MAKEOPTS option to genkernel as suggested in bug #165980.
18 years ago
Chris Gianelloni dc2ac62b83 Added patch from Mike Frysinger <vapier@gentoo.org> to clean up the genkernel man page for bug #166179.
18 years ago
Chris Gianelloni 48440a0dcc Fix REAL_INIT for bug #160635.
18 years ago
Chris Gianelloni 01a16e0aa2 Added patch from Fabio Erculiani <lxnay@lxnaydesign.net> to fix unionfs compilation. This is for bug #152945.
18 years ago
Chris Gianelloni c6619d5f91 Added patch from Martin Parm <parmus@diku.dk> to fix the --no-color option. This resolves bug #114156.
18 years ago
Chris Gianelloni 7ea4f21496 Changed basename to dirname when creating the directory from grub.conf to solve bug #161716.
18 years ago
Chris Gianelloni 7e7a6e1540 Added scsi_scan_wait module to modules_load for 2.6.20 support. Thanks to Robin H. Johnson for <robbat2@gentoo.org> for pointing it out.
18 years ago
Chris Gianelloni bcc80c3162 Added a case statement for the keymap selection to ensure we're always using the named keymaps. This should resolve bug #146714 if everything works correctly. This is 3.4.6, for real.
18 years ago
Chris Gianelloni 2f84cde3bf Adding back the known-good copy of keymaps.tar.gz to svn.
18 years ago
Chris Gianelloni 3061882720 Removing generic/keymaps.tar.gz to replace it with a known-good copy. Blame cvs2svn.
18 years ago
Chris Gianelloni 9862e9b7ce Added patches from François-Xavier Roure <fx_roure@yahoo.fr> from bug #149020. This will end up being genkernel 3.4.6, most likely.
18 years ago
Chris Gianelloni 2056384a90 Adjust selinux stuff in gen_compile.sh to actually do what we intended, not the opposite.
18 years ago
Chris Gianelloni 3a3822f3bb Since device-mapper tries to build with selinux by default, we've removed it, then commented out the selinux support. The ebuild will need to enable/disable selinux support based on the selinux USE flag. This should resolve bug #157538.
18 years ago
Chris Gianelloni 687926759b More fixes for similarly-named modules.
18 years ago
Chris Gianelloni de1b94b525 Disabled full SuSv3 compliant sort, as suggested by Aurélien Francillon <aurelien.francillon@inrialpes.fr> in bug #157777.
18 years ago
Chris Gianelloni 40ecfa2009 Added a fix for similarly-named modules from bug #158017.
18 years ago
Chris Gianelloni fa5253529a Fixed up linking for dmraid for bug #157538.
18 years ago
Chris Gianelloni 6fc0394331 Updated busy-config to work with root=LABEL=<label> for bug #156640.
18 years ago
Chris Gianelloni fe7457eba9 Added patch from Daniel Drake <dsd@gentoo.org> in bug #156611 to clean up the initramfs creation and create a 'proper' initramfs, instead of our concatenated monster.
18 years ago
Chris Gianelloni 8b4b874b64 Added patch from Daniel Drake <dsd@gentoo.org> in bug #156445 to add userspace suspend support to genkernel.
18 years ago
Chris Gianelloni 33bd91d532 Added debug level to LUKS print_info messages for bug #156410.
18 years ago
Chris Gianelloni 9607f7eea1 Added raid456 to alpha/amd64/x86 MODULES_EVMS2 and added tg3 to MODULES_NET.
18 years ago
Chris Gianelloni 22769ddd35 Inverted check on CDROOT_DEV, as it should be -z not -n. Thanks to Jakub Moc <jakub@gentoo.org> for coming up with the quick fix in bug #153554. I lied before. This one is really 3.4.5.
18 years ago
Chris Gianelloni 3cbe67babf Added typo fix from Jason Pepas <j.pepas@mail.utexas.edu> in bug #153516. This is 3.4.5.
18 years ago
Chris Gianelloni c0d0730dd3 Added Large File Support thanks to Fabio Erculiani <lxnay@lxnaydesign.net> in bug #152881.
18 years ago
Chris Gianelloni 12b8ba5e27 Added patch to improve symlink support by Michael Hordijk <hoffbrinkle@hotmail.com> for bug #143217.
18 years ago
Chris Gianelloni c6db6d2542 Added patch from Tim Steiner <tsteiner@nerdclub.net> to add a real_rootflags parameter for bug #122672.
18 years ago
Chris Gianelloni 8edf1cba7d Added patch to support resuming from encrypted swap. The patch was submitted to bug #152441.
18 years ago
Chris Gianelloni 978f6cb361 This is the 3.4.4 release.
18 years ago
Chris Gianelloni 908e45924c Updated with the latest version of the LUKS patches from bug #152441.
18 years ago
Chris Gianelloni d4b9f8ec8c Changed mime-type to application/x-gzip for generic/keymaps.tar.gz for bug #151500.
18 years ago
Chris Gianelloni 3b802a4a93 Added patch from bug #152441 to improve LUKS support.
18 years ago
Chris Gianelloni 55988d9048 Updated kernel configs for amd64/x86 for bug #151609 and bug #152299.
18 years ago
Chris Gianelloni 7dc6eccf6c Changed mime-type proprty to binary/gzip for keymaps.tar.gz for bug #151500. This is genkernel 3.4.3.
18 years ago
Chris Gianelloni 57097c87f6 Added patch for udhcp support. Patch by Stefan Nickl <snickl@snickl.freaks.de> and submitted to bug #145115.
19 years ago
Chris Gianelloni dc87eb99e4 Allow root= for initramfs, instead of only real_root= to specify the root volume. Patch by Salah Coronya <salahx@yahoo.com> from bug #142606.
19 years ago
Chris Gianelloni 869c78ab2a Added patch from Salah Coronya <salahx@yahoo.com> to document dolvm2 and doevms2 in the genkernel man page from bug #142606.
19 years ago
Chris Gianelloni 3ad683ebf7 Added the AUTHORS file and ChangeLog. This is 3.4.2
19 years ago