| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
LILO tries to stat() the specified root device. If that fails, LILO
expects that the given root option is numeric. If something like
"/dev/sdb1" is given on a system with no "/dev/sdb1" device node, LILO
throws an error: "Fatal: Illegal 'root=' specification: /dev/sdb1".
This all happens in dev_number() in src/bsect.c.
|
|
|
|
| |
"@ROOT@" will already be a partition.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Needed to build linux-libre, apparently:
[...]
OBJCOPY arch/x86/boot/compressed/vmlinux.bin
stat: invalid option -- 'c'
BusyBox v1.21.1 (2014-03-19 22:52:11 UTC) multi-call binary.
Usage: stat [OPTIONS] FILE...
Display file (default) or filesystem status
-f Display filesystem status
-L Follow links
-t Display info in terse form
expr: syntax error
sh: invalid number ''
[...]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some NFS-related options transitively select CONFIG_OID_REGISTRY, which
causes Kbuild to try to run lib/build_OID_registry to generate
lib/oid_registry_data.c. lib/build_OID_registry is a Perl script, so
this fails.
[...]
GEN lib/oid_registry_data.c
/bin/sh: perl: not found
make[2]: *** [lib/oid_registry_data.c] Error 127
make[1]: *** [lib] Error 2
make[1]: Leaving directory `/usr/src/linux-libre_3.10.38~gnu-2/tmp/src'
make: *** [build] Error 2
We could someday rewrite lib/build_OID_registry as a shell script, but
for now we'll just disable NFS stuff entirely.
|
| |
|
|
Based on config-dev 0.1 (commit 88a8d56).
|