[РЕШЕНО]WARNING при обновлении ядра

При обновлении ядра вышли предупреждения. Такое первый раз, почему не пойму, вроде у меня не i386 или чего не вижу придя с мороза.
Вот сами WARNING:
$ sudo pacman -Syu
[sudo] password for nnikita: 
:: Синхронизируются базы данных пакетов...
 core                     106,1 KiB  11,6M/s 00:00 [######################] 100%
 extra                   1436,2 KiB  8,29M/s 00:00 [######################] 100%
 community               1833,6 KiB  11,1M/s 00:00 [######################] 100%
:: Запускается полное обновление системы...
разрешение зависимостей...
проверка на взаимную несовместимость...
Цели (7): accountsservice-0.6.30-1  flashplugin-11.2.202.258-1  linux-3.6.10-1
          linux-headers-3.6.10-1  perl-5.16.2-2  python2-2.7.3-3
          supertuxkart-0.8-2
Будет загружено:    220,03 MiB
Будет установлено:  460,88 MiB
Изменение размера:  0,14 MiB
Приступить к установке? [Y/n] 
:: Получение пакетов с core...
 linux-3.6.10-1-i686       40,9 MiB  9,94M/s 00:04 [######################] 100%
 linux-headers-3.6.1...     4,8 MiB  2,98M/s 00:02 [######################] 100%
 perl-5.16.2-2-i686        12,0 MiB  10,9M/s 00:01 [######################] 100%
:: Получение пакетов с extra...
 accountsservice-0.6...   122,1 KiB  10,8M/s 00:00 [######################] 100%
 flashplugin-11.2.20...     8,2 MiB  11,1M/s 00:01 [######################] 100%
 python2-2.7.3-3-i686       8,7 MiB  8,57M/s 00:01 [######################] 100%
:: Получение пакетов с community...
 supertuxkart-0.8-2-i686  145,3 MiB  8,52M/s 00:17 [######################] 100%
(7/7) проверяется целостность пакета               [######################] 100%
(7/7) загрузка файлов пакета                       [######################] 100%
(7/7) проверка возможных конфликтов файлов         [######################] 100%
(7/7) проверяется доступное место                  [######################] 100%
(1/7) обновление accountsservice                   [######################] 100%
(2/7) обновление flashplugin                       [######################] 100%
(3/7) обновление linux                             [######################] 100%
>>>
>>> If you use the LILO bootloader, you should run 'lilo' before rebooting.
>>>
>>> Updating module dependencies. Please wait ...
>>> Generating initial ramdisk, using mkinitcpio.  Please wait...
==> Building image from preset: 'default'
  -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
==> Starting build: 3.6.10-1-ARCH
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
==> WARNING: Hook 'pata' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'scsi' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'sata' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
  -> Running build hook: [filesystems]
  -> Running build hook: [usbinput]
  -> Running build hook: [fsck]
  -> Running build hook: [consolefont]
==> WARNING: consolefont: no font found in configuration
  -> Running build hook: [keymap]
==> Generating module dependencies
==> Creating gzip initcpio image: /boot/initramfs-linux.img
==> Image generation successful
==> Building image from preset: 'fallback'
  -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
==> Starting build: 3.6.10-1-ARCH
  -> Running build hook: [base]
  -> Running build hook: [udev]
==> WARNING: Hook 'pata' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'scsi' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'sata' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
  -> Running build hook: [filesystems]
  -> Running build hook: [usbinput]
  -> Running build hook: [fsck]
  -> Running build hook: [consolefont]
==> WARNING: consolefont: no font found in configuration
  -> Running build hook: [keymap]
==> Generating module dependencies
==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
==> Image generation successful
(4/7) обновление linux-headers                     [######################] 100%
(5/7) обновление perl                              [######################] 100%
(6/7) обновление python2                           [######################] 100%
(7/7) обновление supertuxkart                      [######################] 100%
$
Заранее, благодарю за помощь!
"If you try to hide the complexity of the system, you'll end up with a more complex system". Layers of abstraction that serve to hide internals are never a good thing. Instead, the internals should be designed in a way such that they NEED no hiding. —Aaron Griffin
==> WARNING: Hook 'pata' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'scsi' is deprecated. Replace it with 'block' in your config
  -> Running build hook: [block]
==> WARNING: Hook 'sata' is deprecated. Replace it with 'block' in your config
Тут же английским языком сказано – хуки pata scsi sata (а также usb и некоторые другие) устарели, замените их всех на хук block в mkinitcpio.conf
Эх, верно.
Значит делаем в mkinitcpio.conf в строке HOOKS=“base udev autodetect pata scsi sata filesystems usbinput fsck consolefont keymap”, замену на HOOKS=“base block udev autodetect filesystems usbinput fsck keymap”? Последнее также в связи с
 -> Running build hook: [consolefont]
==> WARNING: consolefont: no font found in configuration
  -> Running build hook: [keymap]
"If you try to hide the complexity of the system, you'll end up with a more complex system". Layers of abstraction that serve to hide internals are never a good thing. Instead, the internals should be designed in a way such that they NEED no hiding. —Aaron Griffin
Почти правильно, только вам не consolefont убирать надо, а смотреть, что вы там сотворили со шрифтами или почему шрифт не прописан в vconsole.conf
Вроде прописано всё:
KEYMAP="us"
CONSOLEFONT="cyr-sun16"
CONSOLEMAP=

Cейчас зайду домой и всё ещё раз проверю.
"If you try to hide the complexity of the system, you'll end up with a more complex system". Layers of abstraction that serve to hide internals are never a good thing. Instead, the internals should be designed in a way such that they NEED no hiding. —Aaron Griffin
Пропишите стандартное из /etc/mkinitcpio.conf.pacnew :
HOOKS="base udev autodetect modconf block filesystems usbinput fsck"
Или вам keymap очень дорог?
samson4747
Вроде прописано всё:
KEYMAP="us"
CONSOLEFONT="cyr-sun16"
CONSOLEMAP=

Cейчас зайду домой и всё ещё раз проверю.
эт старые конфиги, “новый” должен выглядеть так примерно (в т.ч. без кавычек):
/etc/vconsole.conf
KEYMAP=ru
FONT=ter-v16v
PGP 0x31361F01
arcanisrepo
samson4747
При обновлении ядра вышли предупреждения. Такое первый раз, почему не пойму
Причина - не обратили внимание на сообщение при обновлении mkinitcpio
warning: /etc/mkinitcpio.conf installed as /etc/mkinitcpio.conf.pacnew
 ==> The "block" hook has replaced several hooks:
        fw, sata, pata, scsi, virtio, mmc, usb
     Replace any and all of these in /etc/mkinitcpio.conf with a single
     instance of the "block" hook
Честно говоря keymap какую серьёзную смысловую нагрузку несёт?
Наверно, так и оставлю:
HOOKS="base udev autodetect consolefont modconf block filesystems usbinput fsck"

arcanis , что значит старый? Он недавно только таким стал, ну максимум это мы всё меняли 5 месяцев назад. Думаю убрав кавычки и сменив CONSOLEFONT на ~FONT, ничего не выйграем, или заблуждаюсь?

sirocco , признаю… не доглядел…
"If you try to hide the complexity of the system, you'll end up with a more complex system". Layers of abstraction that serve to hide internals are never a good thing. Instead, the internals should be designed in a way such that they NEED no hiding. —Aaron Griffin
samson4747
умаю убрав кавычки и сменив CONSOLEFONT на ~FONT, ничего не выйграем, или заблуждаюсь?
Заблуждаешься.
Псевдографический инсталлятор Arch Linux ver. 3.8.2
Благодарности принимаются на ЯД 410012815723874
 
Зарегистрироваться или войдите чтобы оставить сообщение.