correct arch detect
This commit is contained in:
parent
96d26ce78f
commit
d4efa7293c
1
Documentation/kernel-config/sablink/changelog
Normal file
1
Documentation/kernel-config/sablink/changelog
Normal file
@ -0,0 +1 @@
|
||||
linux (3.5.7) UNRELEASED; urgency=low
|
@ -12,8 +12,10 @@ get_flavourconfigs() {
|
||||
}
|
||||
|
||||
get_arch() {
|
||||
if find . -name config.flavour.$1 | grep -q i386; then
|
||||
echo i386
|
||||
if find . -name config.flavour.$1 | grep -q x86; then
|
||||
echo x86
|
||||
elif find . -name config.flavour.$1 | grep -q amd64; then
|
||||
echo x86
|
||||
else
|
||||
echo arm
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user