summaryrefslogtreecommitdiff
path: root/package/base-files/src/init
AgeCommit message (Collapse)Author
2014-03-15startup fixesWaldemar Brodkorb
- always use /sbin/init, even for initramfs - mount devtmpfs for initramfs automatically in kernel space - fix armhf for adk-test-framework - remove mdev -s on boot, I think it is unneeded, takes very long on Qemu systems - add alias for ro/rw remounts of / - remove old /init and rc.shutdown, both unused
2014-03-07use standard busybox init, remove previously used /init. some configs and ↵Waldemar Brodkorb
ideas from buildroot project
2014-01-20finetune startup, avoid kernel messages on ttyWaldemar Brodkorb
2013-08-14fixes problem with musl, order of options seems importantWaldemar Brodkorb
2012-03-20add simple lemote disk installerWaldemar Brodkorb
2012-01-15mk/image.mk: improve and simplify initramfs generationPhil Sutter
Using the kernel tools is a lot better than calling cpio ourselfs, as this way we can have it create device nodes for us. So no need to reopen /dev/console and things like that. While here, fix also initramfs compression (untested), as in my experience the kernel drops all symbols regarding compression from it's .config in the first compile phase. Probably one should make the actual compression algorithm configurable (and ideally depending on what the kernel supports for the given architecture). This is a rough hack based on what I'm using in the custom viprinux build file, so something like this is already running somewhere. ;)
2011-10-20try to mount secondary filesystems after modules are loadedWaldemar Brodkorb
2011-10-19make virsh, virt-install and kvm usable on shuttle pcWaldemar Brodkorb
2011-10-08push pacemaker stuff in a usable state.Waldemar Brodkorb
2011-09-12add new package kexecinit, to realize kexec bootingWaldemar Brodkorb
2011-07-27reimplement cryptinit as shell scriptWaldemar Brodkorb
2010-12-31fix some error messages, when fstab does not existWaldemar Brodkorb
2010-12-16interfaces contains wpa keys, make it non-readable for the user, optimize ↵Waldemar Brodkorb
init and shutdown
2010-12-16enable automatic filesystem checks for devices/partitions in /etc/fstabWaldemar Brodkorb
2010-11-25first setup cfgfs, then mount all other volumes, otherwise fstab is ignoredWaldemar Brodkorb
2010-11-20avoid warning, when already mounted by kernelWaldemar Brodkorb
2010-11-18convert qemu for x86/x86_64 to hardware profilesWaldemar Brodkorb
2010-11-10fix my broken commit, remount not requiredWaldemar Brodkorb
2010-11-08safe one lineWaldemar Brodkorb
2010-11-03just remount existing devtmpfsWaldemar Brodkorb
2010-07-19fix tmpfs size, when /etc/tmpfs is not givenWaldemar Brodkorb
2010-06-20make tmpfs size configurable via /etc/tmpfsWaldemar Brodkorb
2010-02-26update qemu targets to 2.6.33Waldemar Brodkorb
- add LZO compression choice - reactivate mdev mount in init - add correct inittab for qemu-arm
2010-02-25we use devtmpfs on all targets, no need for extra dev tmpfsWaldemar Brodkorb
2010-02-07change defaults for CONFIG/BUILD/INSTALL stylesWaldemar Brodkorb
All packages need an update, so here is a very huge commit. Most of the 460 source packages use automatic style for configuration, building and installing. Make these styles default to "auto". If you have a package, which does not conform to this, just use manual style and add a do-$task make target. I added a new style named AUTOTOOL style, which is needed for some broken packages, which needs to be updated via autoconf or automake. I renamed CONFIGURE_STYLE to CONFIG_STYLE. Updates for some packages, which have newer upstream versions. Renaming of all package/*/extra directories. Use the directory src/ to provide overwrites of source files or to add the code, when no upstream package is available or used. src directory will be automatically used.